# RelAI Latest On-Chain Token Pairs with AI Analysis

> RelAI Latest On-Chain Token Pairs with AI Analysis is a paid API for AI agents from api.relai.fi, paid per call via x402, $0.400000/call, status unknown (last checked 2026-09-13).

Fetches the latest deployed on-chain token pairs with liquidity pool data and AI-driven analysis across major blockchain networks.

## Facts

- Endpoint: POST https://api.relai.fi/relay/1769629274857/x402/bitquery/latest-pairs
- Price: $0.400000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-relai-fi-c46ce04e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tPFbh9nvcj_nfrksb_Eki

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 api-relai-fi-c46ce04e -d '<json body>'
```

Example prompt: Show me the latest token pairs that were just deployed on-chain, including their liquidity pool data and any AI-driven analysis — I want to spot new DeFi opportunities across major chains.

## When to prefer this

Choose this endpoint when you need real-time discovery of newly deployed token pairs with both raw liquidity pool data and AI-generated analysis in a single call. Prefer it over generic block explorers when you want curated, multi-chain coverage with structured analytics rather than raw transaction logs.

## Known failure modes

- Invalid or unsupported chain ID returns an error response
- Network congestion may delay on-chain data freshness
- Bitquery upstream outage causes 5xx errors
- Malformed POST body returns 400 bad request
- Insufficient USDC payment (requires $0.40) causes 402 payment required

## How this service works

Query latest deployed tokens on-chain with liquidity pool data. Supported chains: base, ethereum, bsc, arbitrum, polygon, optimism. Default chain: base. Required params: none (chain/limit/timeperiod are optional and defaulted).

## Output

Returns a list of the most recently deployed on-chain token pairs, each enriched with liquidity pool metrics (e.g. pool size, trading volume, token addresses) and AI-generated analysis summarizing the pair's characteristics and potential significance across major blockchain networks.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "base",
    "ethereum",
    "bsc",
    "arbitrum",
    "polygon",
    "optimism",
    "solana"
   ],
   "type": "string",
   "description": "Blockchain to query (e.g., base, ethereum, bsc, solana)"
  },
  "limit": {
   "type": "string",
   "description": "Maximum number of results to return (default: 10, max: 500)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-relai-fi-c46ce04e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.relai.fi](https://www.zero.xyz/host/api.relai.fi/llms.txt)
