# Batch Variant Market Snapshots – Tokens API (Base/EVM)

> Batch Variant Market Snapshots – Tokens API (Base/EVM) is a paid API for AI agents from api.xona-agent.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches batch market snapshots for token variants on Base/EVM networks via the Tokens API

## Facts

- Endpoint: POST https://api.xona-agent.com/base-main/tokens-api/variant-markets
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/batch-variant-market-snapshots-tokens-api-base-evm-eb6f70c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L4Xf9iVAoUd9HP-cso_Jf

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability batch-variant-market-snapshots-tokens-api-base-evm-eb6f70c6 -d '<json body>'
```

Example prompt: Can you pull batch market snapshots for the token variants I'm tracking on Base — I need current price, liquidity, and market metrics for all of them in one shot?

## When to prefer this

Use this endpoint when you need to retrieve market data for multiple token variants in a single efficient batch call on the Base/EVM network, rather than making individual requests per token. Prefer this over single-token market endpoints when you need to compare or aggregate data across several variants simultaneously.

## Known failure modes

- Empty or malformed body results in schema validation error
- Token variants not found on Base network return empty or null snapshot entries
- Payment not completed (x402) results in 402 Payment Required response
- Rate limiting may apply if too many variants are batched
- Network or RPC errors for Base chain may return partial or failed snapshots

## How this service works

Batch variant market snapshots via Tokens API (Base/EVM)

## Output

Returns a batch of market snapshot objects for each requested token variant on the Base/EVM network, including current market data such as prices, liquidity figures, trading volumes, and other market metrics for each variant.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {},
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/batch-variant-market-snapshots-tokens-api-base-evm-eb6f70c6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.xona-agent.com](https://www.zero.xyz/host/api.xona-agent.com/llms.txt)
