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": "f9a1ba5a-7610-45a2-8b5c-b90cbda3c64d",
  "object": "display_currency",
  "currency": "eur",
  "current_exchange_rate": 0.75,
  "created_at": 1771429862,
  "updated_at": 1771429862
}

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.