Skip to main content
GET
/
v2
/
tokenized_assets
/
markets
/
{symbol}
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_symbol_(symbol="<value>")

    # Handle response
    print(res)
{
  "average_volume": "92840100",
  "chain": "ethereum",
  "change_24h_pct": "1.49",
  "change_24h_usd": "5.21",
  "contract_address": "0xf6b1117ec07684D3958caD8BEb1b302bfD21103f",
  "current_price_usd": "354.82",
  "decimals": 18,
  "market_cap": "1135000000000",
  "name": "Tesla, Inc.",
  "price_high_52w": "488.54",
  "price_history_24h": [
    {
      "price": "349.61",
      "timestamp": "2026-05-03T20:00:00Z"
    },
    {
      "price": "351.07",
      "timestamp": "2026-05-04T00:00:00Z"
    },
    {
      "price": "352.94",
      "timestamp": "2026-05-04T04:00:00Z"
    },
    {
      "price": "354.10",
      "timestamp": "2026-05-04T08:00:00Z"
    },
    {
      "price": "354.82",
      "timestamp": "2026-05-04T12:00:00Z"
    }
  ],
  "price_low_52w": "138.80",
  "region_exposure": [
    "US"
  ],
  "sectors": [
    "Consumer Discretionary"
  ],
  "shares_multiplier": "1",
  "shares_outstanding": "3198000000",
  "symbol": "TSLAon",
  "total_holders": 1842,
  "tradable_sessions": [
    "regular",
    "premarket",
    "afterhours"
  ],
  "underlying_ticker": "TSLA",
  "volume_24h": "84231590"
}

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.

Path Parameters

symbol
string
required

Response

Successful Response

Extended market view returned when fetching a single market.

symbol
string
required

On-chain token symbol (e.g. 'TSLAon').

underlying_ticker
string
required

Underlying equity ticker (e.g. 'TSLA').

name
string
required

Underlying equity full name (e.g. 'Tesla, Inc. Common Stock').

contract_address
string
required

Ethereum mainnet ERC-20 address for this token.

decimals
integer
required

ERC-20 decimals on the surfaced chain.

current_price_usd
string
required

Latest price in USD as a decimal string.

chain
enum<string>
default:ethereum

Chain on which the surfaced contract is deployed.

Available options:
ethereum
change_24h_usd
string | null

Absolute USD price change vs 24h ago (decimal string).

change_24h_pct
string | null

Percent price change vs 24h ago (decimal string).

sectors
string[]

Sector / industry tags from the issuer (e.g. ['Technology']).

region_exposure
string[]

Regional market exposure tags (e.g. ['US']).

price_history_24h
PricePoint · object[]

24h price sparkline (sampled timestamps, descending or ascending).

price_high_52w
string | null

52-week high of the underlying equity (USD).

price_low_52w
string | null

52-week low of the underlying equity (USD).

volume_24h
string | null

24h trading volume of the underlying equity.

average_volume
string | null

Average trading volume of the underlying equity.

shares_outstanding
string | null

Shares outstanding of the underlying equity.

market_cap
string | null

Market cap of the underlying equity (USD).

total_holders
integer | null

On-chain holder count for the tokenized asset.

tradable_sessions
string[]

Sessions in which the token can be traded (e.g. 'regular', 'premarket').

shares_multiplier
string | null

Shares-multiplier ratio (= 1 if no recent split / corporate action).