# ChainRay New Pairs

> ChainRay New Pairs is a paid API for AI agents from chainray.online, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches newly created token pairs on a specified blockchain within a configurable lookback period, optionally including token risk scoring

## Facts

- Endpoint: GET https://chainray.online/new-pairs
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-new-pairs-10eacd1e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tBRsdZ0OGvtg3TnSMdok4

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 chainray-new-pairs-10eacd1e
```

Example prompt: Show me all new token pairs that launched on Solana in the last 48 hours, and include risk scoring so I can see which ones look sketchy.

## When to prefer this

Use this endpoint when you need to discover recently launched token pairs on a specific blockchain, especially for DeFi opportunity scanning, token trend analysis, or identifying new liquidity pools. Particularly valuable when risk scoring is needed to filter out high-risk or fraudulent tokens from newly launched pairs.

## Known failure modes

- Invalid chain parameter returns error — only supported chains among 46 are accepted
- Hours parameter out of range (must be 1-168) returns validation error
- Chain with no new pairs in the period returns empty list
- Network congestion or node issues may cause stale or delayed data
- Unsupported chain identifier returns 400 or similar error

## How this service works

The most complete blockchain data and intelligence service for AI agents. 93 endpoints across 46 chains, from gas fees to DeFi analytics, with real-time streams, intent routing, and verifiable proofs. Pay-per-request via x402.

## Output

A list of newly created token pairs on the specified blockchain within the lookback window, including pair addresses, token metadata, creation timestamps, and optionally token risk scores indicating potential fraud or rugpull indicators.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "chain": {
       "type": "string",
       "description": "Blockchain network"
      },
      "hours": {
       "type": "integer",
       "default": 24,
       "description": "Lookback period in hours (1-168)"
      },
      "withRisk": {
       "type": "boolean",
       "default": false,
       "description": "Include token risk scoring"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chainray-new-pairs-10eacd1e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from chainray.online](https://www.zero.xyz/host/chainray.online/llms.txt)
