cURL
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": "dff7a6b4-a84f-4c8e-9a81-c80fdab89b5f", "object": "display_currency", "currency": "eur", "current_exchange_rate": 0.75, "created_at": 1773903542, "updated_at": 1773903542 }, { "id": "42603b14-31d1-4836-8a37-c35f2e8d0d44", "object": "display_currency", "currency": "usd", "current_exchange_rate": 0.75, "created_at": 1773903542, "updated_at": 1773903542 } ] }
Returns a list of your display currencies.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Success
A string describing the object type returned.
Show child attributes
An array of objects.
Was this page helpful?