Get API Key
Everything in the hosted public surface starts from one API key. Create it in the signed-in portal dashboard, copy it once, then reuse the same bearer token across every public call path.
This docs app is documentation-only. API key creation still happens in the signed-in portal dashboard.
Create and store the key
Sign in to the portal dashboard
Open the keys area inside the signed-in portal and create one API key.
Copy the secret immediately
The public token value is only shown at creation time. Save it in your own secret store, not in git.
Reuse the same bearer token everywhere
The same API key works for hosted MCP, REST, Market WebSocket, raw RPC, and raw RPC WebSocket.
Keep these values ready
- One
api_keyfor every hosted surface. - Hosted gateway base URL:
https://gw-aql.tomo.services - Hosted MCP URL:
https://mcp-aql.tomo.services - Hosted WebSocket URL:
wss://gw-aql.tomo.services/v1/market/ws
Authorization examples
HTTP and MCP
Use the same bearer header for hosted REST, raw RPC, and hosted MCP.
Authorization: Bearer <api_key>Choose one first call
Fastest path to one successful hosted request.
Call RESTBest when the runtime already supports tool calls.
Call MCPDirect EVM family or Solana (Beta) JSON-RPC calls.
Call RPCLive price and OHLCV market subscriptions.
Call Market WebSocketNative chain subscriptions over hosted JSON-RPC websocket routes.
Call RPC WebSocket