Supported Symbols Endpoint

The Metals-API API comes with a constantly updated endpoint returning all available currencies. To access this list, make a request to the API's symbols  endpoint.


API Request:

https://metals-api.com/api/symbols
? access_key = API_KEY

Run example in Postman


Request Parameters:

Parameter Description
access_key [Required] Your API Key.

API Response:

{
"success": true,
"symbols": {
"AED": "United Arab Emirates Dirham",
"AFN": "Afghan Afghani",
"ALL": "Albanian Lek",
"AMD": "Armenian Dram",
[...] 
}
}     

Response Objects:

Response Object Description
success Returns true or false depending on whether or not your API request has succeeded.
symbols Returns all supported currencies with their respective three-letter currency codes or metal codes and names.

Example request in Postman:

https://metals-api.com/api/symbols?access_key=YOUR_API_KEY

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.