Skip to main content
GET
/
v1
/
assets
/
all
/
metadata
Get Metadata for All Supported Assets
curl --request GET \
  --url https://api.gm.ondo.finance/v1/assets/all/metadata \
  --header 'x-api-key: <api-key>'
[
  {
    "symbol": "AAPLon",
    "ticker": "AAPL",
    "coingeckoId": "apple-ondo-tokenized-stock",
    "coinmarketCapId": "38037",
    "addresses": [
      {
        "networkChainId": "bsc-56",
        "address": "0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
        "decimals": 18
      },
      {
        "networkChainId": "ethereum-1",
        "address": "0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c",
        "decimals": 18
      }
    ],
    "tags": {
      "assetClass": "Equities",
      "instrumentType": "Stock"
    }
  },
  {
    "symbol": "ABNBon",
    "ticker": "ABNB",
    "coingeckoId": "airbnb-ondo-tokenized-stock",
    "coinmarketCapId": "38044",
    "addresses": [
      {
        "networkChainId": "bsc-56",
        "address": "0xef80743f78d98fc2b47a2253b293152ce8b879ba",
        "decimals": 18
      },
      {
        "networkChainId": "ethereum-1",
        "address": "0xb035c3d5083bdc80074f380aebc9fcb68aba0a28",
        "decimals": 18
      }
    ],
    "tags": {
      "assetClass": "Equities",
      "instrumentType": "Stock"
    }
  },
  "..."
]

Authorizations

x-api-key
string
header
required

Response

OK

symbol
string
required
Example:

"AAPLon"

ticker
string
required
Example:

"AAPL"

tags
object
required
coingeckoId
string | null
Example:

"apple-ondo-tokenized-stock"

addresses
object[]

Contract addresses for various chains.

Example:
[
{
"networkChainId": "bsc-56",
"address": "0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4",
"decimals": 18
},
{
"networkChainId": "ethereum-1",
"address": "0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c",
"decimals": 18
}
]
coinmarketcapId
string | null
Example:

"38037"