Currencies

GET /metadata/currencies

Retrieve the list of currencies supported by Arta's API

Headers

  • Authorization string Required

    Authorize your API calls with an Arta API token

Responses

  • 200 application/json

    A collection of currencies

    Hide headers attributes Show headers attributes
    Hide response attributes Show response attributes object
    • symbol string

      The symbol used to denote that a number is a monetary value in a particular currency

    • id string

      The ID representing the resource

    • name string

      A brief label for the currency

GET /metadata/currencies
curl \
 -X GET https://api.arta.io/metadata/currencies \
 -H "Authorization: ARTA_APIKey s0e1t2e3c4a5s6t7r8o9n10o11m12y"
Response examples (200)
# Headers
content-type: application/json
x-arta-request-id: FkBjuxbwLLTx4RoAARkx

# Payload
[
  {
    "symbol": "$",
    "id": "USD",
    "name": "US Dollar"
  }
]