Skip to main content
GET
/
v1
/
display_currencies
List
curl --request GET \
  --url https://{defaultHost}/v1/display_currencies \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 2,
    "limit": 20,
    "page": 1,
    "url": "/v1/display_currencies"
  },
  "data": [
    {
      "id": "f4137a9c-a7ff-4096-9689-86011afc360e",
      "object": "display_currency",
      "currency": "eur",
      "current_exchange_rate": 0.75,
      "created_at": 1767909695,
      "updated_at": 1767909695
    },
    {
      "id": "a3d29bc4-b9a5-4eb2-9e81-60c3fd6a9761",
      "object": "display_currency",
      "currency": "usd",
      "current_exchange_rate": 0.75,
      "created_at": 1767909695,
      "updated_at": 1767909695
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.