Skip to Content
Getting StartedUse Market HTTP

Call HTTP

Hosted HTTP is the simplest way to confirm the product contract. Start with one market read, keep the bearer API key in the auth header, and verify one response before expanding.

If you only need one quick success case, start here before MCP or raw RPC.

Access

Route family
GET /v1/market/*
Auth header
Authorization: Bearer {API_KEY}

How to call HTTP

Prepare the bearer token

Create the API key first if needed, then keep the bearer token ready.

Start with one market read

Use GET /v1/market/price-snapshot before widening into more fields or surfaces.

Verify the response shape

Confirm your runtime can read the response without extra normalization.

HTTP request

curl -X GET "{GATEWAY_BASE_URL}/v1/market/price-snapshot?market_kind=dex&chain=ethereum&address={token_address}" \ -H "Authorization: Bearer {api_key}"

Try it in the docs

Try send

Try price snapshot

Send one direct browser request to the current hosted gateway base URL so the real network request is visible in devtools. The API key is only stored locally when you provide one.

  • Get API Key: prepare the API key and shared hosted endpoint values once.
  • Market API: open the market reference tree.
  • Get price snapshot: open the exact request and response fields for the sample above.
Last updated on