Market
What trades on each chain, and how far the read of it got.
Also for this capability: API · CLI · SDKs
What trades on each chain, and how far the read of it got.
| Base URL | https://api.hanzo.ai |
| Operations | 5 |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Specification
Specification pending — no HIP in hanzoai/hips declares capability: market yet. What this capability serves is below, from the API document; what it is — the store it owns, how it meters, what it publishes — is written as a HIP under HIP-0139.
Four surfaces
| Surface | Reaches this capability as | Coverage |
|---|---|---|
| REST | market at its own prefix | 5 operations |
| CLI | hanzo market … | 5 of 5 |
| SDK | MarketApi in every published client | 5 methods |
| MCP | — | no tool names it yet — use HTTP or an SDK |
Quickstart
export HANZO_API_KEY=sk-... # console.hanzo.ai → API keysThen the first call — a read that needs nothing but the key. GET /v1/market/pools, operation get_market_pools:
hanzo market poolsimport { Configuration, MarketApi } from 'hanzoai';
const api = new MarketApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getMarketPools();from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import MarketApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = MarketApi(client).get_market_pools()cfg := hanzoai.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := hanzoai.NewAPIClient(cfg)
resp, _, err := client.MarketAPI.GetMarketPools(context.Background()).Execute()
if err != nil {
return err
}use hanzo_client::apis::{configuration::Configuration, market_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = market_api::get_market_pools(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.MarketApi;
ApiClient client = new ApiClient();
client.setBearerToken(System.getenv("HANZO_API_KEY"));
var result = new MarketApi(client).getMarketPools();curl https://api.hanzo.ai/v1/market/pools \
-H "Authorization: Bearer $HANZO_API_KEY"MCP declares no tool for market — tools/list on https://api.hanzo.ai/v1/mcp names the products it does reach. Use HTTP or an SDK.
Answers 200 with object — ok.
Endpoints
| Endpoint | What it does |
|---|---|
GET /v1/market/chains | Answers every chain this deployment can read, what is deployed on each, and what its automated market maker amounts to. |
GET /v1/market/pools | Answers the automated market makers on one chain: their two tokens, their fee tier, and what has moved through each. |
GET /v1/market/survey | Answers which of the four settlement precompiles carry code on one chain. |
GET /v1/market/token | Answers one token's daily history — open, high, low, close, price and volume per UTC day, oldest first. |
GET /v1/market/tokens | Answers the tokens one chain's indexer has seen, with the decimals a caller needs to read any amount of one correctly. |
How is this guide?
Explorer
Chain data: your block indexers and how far each has caught up, plus the on-chain price feeds.
SDKs
One generated client per language for the whole /v1 surface, plus the hand-written AI and per-service libraries for TypeScript. What each one is called on its registry, and the same first call in each.