Skip to main content
GET
/
assets
Get asset details
curl --request GET \
  --url https://v2.prod.halliday.xyz/assets \
  --header 'Authorization: Bearer <token>'
{
  "usd": {
    "issuer": "USA",
    "name": "United States Dollar",
    "symbol": "USD",
    "decimals": 2
  },
  "eur": {
    "issuer": "ECB",
    "name": "Euro",
    "symbol": "EUR",
    "decimals": 2
  },
  "ethereum:0x": {
    "chain": "ethereum",
    "address": "0x",
    "name": "Ether",
    "symbol": "ETH",
    "decimals": 18,
    "image_url": "https://coin-images.coingecko.com/coins/images/279/large/ethereum.png?1696501628"
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

sandbox
boolean

Whether to use sandbox environment

assets[]
string[]

List of assets to get details for

Identifier in the token format ("chain:address") or fiat currency code ("USD")

Response

Asset details

{key}
object
  • Option 1
  • Option 2