Skip to main content
GET
/
v1
/
display_currencies
/
{id}
Retrieve
curl --request GET \
  --url https://{defaultHost}/v1/display_currencies/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "374a9ceb-b7dd-4096-8eb1-02e91c0171c6",
  "object": "display_currency",
  "currency": "eur",
  "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.

Path Parameters

id
string
required

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

currency
string

Three-letter ISO currency code, in lowercase.

current_exchange_rate
number

The current exchange rate from the account's default currency to this display currency.

created_at
integer | null

Time at which the object was created. Measured in seconds since the Unix epoch.

updated_at
integer | null

Time at which the object was last updated. Measured in seconds since the Unix epoch.