Skip to main content

List tokens

GET /api/v1/tokens and GET /api/v1/tokens/newest
The values above are illustrative, not live market data.

Token detail

GET /api/v1/tokens/{address} returns the token record plus current curve, metrics, optional metadata, and optional graduation fields. A missing canonical token returns 404 not_found.

Pricing

GET /api/v1/tokens/{address}/pricing
After graduation, the source becomes indexed_v3_market only when the latest indexed trade source is uniswap_v3. Values can be null when no valid price exists.

Chart

GET /api/v1/tokens/{address}/chart?interval=1h&limit=168 Supported intervals are 1m, 5m, 15m, 1h, 4h, 1d, and 1w; limit is 1–1,000. Candles include bucket start, counts, volume, unique traders, and nullable open/high/low/close prices.
The response is illustrative. Unsupported intervals return 400 invalid_interval; invalid limits return 400 invalid_request.

Creator resources

  • GET /api/v1/creators/{address} returns address, token_count, aggregate indexed volume, tokens, and an optional next cursor.
  • GET /api/v1/creators/{address}/tokens returns the standard token page format.
Both accept limit and cursor.
This creator profile is an illustrative response shape. The creator-token endpoint uses the same { "items": [...], "next_cursor": "..." } page shape as the token list.