Skip to main content
GET
/
v1
/
prices
/
{tokenMint}
curl --request GET \
  --url https://api.bookie.app/v1/prices/SOL \
  --header 'Authorization: Bearer bookie_live_abc123def456'
{
  "mint": "So11111111111111111111111111111111111111112",
  "symbol": "SOL",
  "price": 147.23,
  "change24h": 3.2,
  "volume24h": 2847392847,
  "marketCap": 68492837492,
  "lastUpdated": "2024-03-08T14:30:00Z"
}

Authorization

Authorization
string
required
Bearer token. Format: Bearer bookie_live_abc123def456

Path Parameters

tokenMint
string
required
Token mint address or symbol (SOL, USDC, BONK, etc.)

Response

mint
string
Token mint address
symbol
string
Token symbol
price
number
Current price in USD
change24h
number
24-hour price change percentage
volume24h
number
24-hour trading volume in USD
marketCap
number
Market capitalization in USD
lastUpdated
string
ISO 8601 timestamp of last price update
curl --request GET \
  --url https://api.bookie.app/v1/prices/SOL \
  --header 'Authorization: Bearer bookie_live_abc123def456'
{
  "mint": "So11111111111111111111111111111111111111112",
  "symbol": "SOL",
  "price": 147.23,
  "change24h": 3.2,
  "volume24h": 2847392847,
  "marketCap": 68492837492,
  "lastUpdated": "2024-03-08T14:30:00Z"
}