Skip to main content
GET
/
v2
/
tokenized_assets
/
markets
Python (SDK)
from compass_api_sdk import CompassAPI


with CompassAPI(
    api_key_auth="<YOUR_API_KEY_HERE>",
) as compass_api:

    res = compass_api.tokenized_assets.tokenized_assets_markets()

    # Handle response
    print(res)
{
  "markets": [
    {
      "chain": "ethereum",
      "change_24h_pct": "1.49",
      "change_24h_usd": "5.21",
      "contract_address": "0xf6b1117ec07684D3958caD8BEb1b302bfD21103f",
      "current_price_usd": "354.82",
      "decimals": 18,
      "name": "Tesla, Inc.",
      "region_exposure": [
        "US"
      ],
      "sectors": [
        "Consumer Discretionary"
      ],
      "symbol": "TSLAon",
      "underlying_ticker": "TSLA"
    },
    {
      "chain": "ethereum",
      "change_24h_pct": "-0.46",
      "change_24h_usd": "-1.07",
      "contract_address": "0x6cdcF8C170552DCA1a4dD8Bb1aB6dB7e7E0bF7c4",
      "current_price_usd": "229.13",
      "decimals": 18,
      "name": "Apple Inc.",
      "region_exposure": [
        "US"
      ],
      "sectors": [
        "Technology"
      ],
      "symbol": "AAPLon",
      "underlying_ticker": "AAPL"
    },
    {
      "chain": "ethereum",
      "change_24h_pct": "2.16",
      "change_24h_usd": "2.92",
      "contract_address": "0x9c3F4D8F9eC6c1F9aB1f2C3D4E5F60718293A4B5",
      "current_price_usd": "138.41",
      "decimals": 18,
      "name": "NVIDIA Corporation",
      "region_exposure": [
        "US"
      ],
      "sectors": [
        "Technology"
      ],
      "symbol": "NVDAon",
      "underlying_ticker": "NVDA"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.compasslabs.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Your Compass API Key. Get your key here.

Query Parameters

category
string | null

Filter markets by category (e.g. 'tech', 'finance').

search
string | null

Case-insensitive substring match against the on-chain symbol, underlying ticker, and underlying name.

Response

Successful Response

List of tokenized equity markets.

markets
Market · object[]
required

Tokenized equity markets surfaced on Ethereum.