Skip to main content
GET
/
v1
/
assets
/
{symbol}
/
addresses
Get Contract Addresses for an Asset
curl --request GET \
  --url https://api.gm.ondo.finance/v1/assets/{symbol}/addresses \
  --header 'x-api-key: <api-key>'
{
  "symbol": "AAPLon",
  "addresses": [
    {
      "networkChainId": "bsc-56",
      "address": "0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
      "decimals": 18
    },
    {
      "networkChainId": "ethereum-1",
      "address": "0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c",
      "decimals": 18
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

symbol
string
required

The GM token symbol

Response

OK

networkChainId
enum<string>
required

The chain's identifier including the chain name and chain id.

Available options:
ethereum-1,
bsc-56,
5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d
address
string
required

The contract address on the specified chain.

Example:

"0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c"

decimals
integer<int64>
required

The number of decimals places for the asset.

Example:

18