Skip to main content
GET
/
currencies
/
{id}
Fetch currency by its ID
curl --request GET \
  --url https://sandbox.api.btdx.io/currencies/{id} \
  --header 'authorization: <authorization>'
{
  "_meta": {
    "_count": 123,
    "_page": {
      "_pageNumber": 123,
      "_pageSize": 123,
      "_totalElements": 123,
      "_totalPages": 123
    }
  },
  "currencies": [
    {
      "id": "<string>",
      "networkId": "<string>",
      "name": "<string>",
      "symbol": "<string>",
      "mint": "<string>"
    }
  ]
}

Headers

authorization
string
required

Header with the accessToken for the current session

Path Parameters

id
string
required

Currency ID

Response

OK

_meta
object
currencies
object[]