# ChainRay Token Screener

> ChainRay Token Screener is a paid API for AI agents from chainray.online, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Screens and filters tokens on a specified blockchain network, returning token analytics and intelligence data for DeFi research.

## Facts

- Endpoint: GET https://chainray.online/token-screener
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-token-screener-f8ebeb50
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VQaGEwnb5BvN28olXgu4x

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-token-screener-f8ebeb50
```

Example prompt: Can you screen the top tokens on Base right now using ChainRay's token screener and show me which ones look most active or promising?

## When to prefer this

Use this endpoint when an agent needs to screen, filter, or discover tokens on a specific blockchain network for DeFi research or investment analysis. Prefer this over general blockchain data endpoints when the goal is to surface a ranked or filtered list of tokens rather than querying a specific token's details.

## Known failure modes

- Unsupported chain identifier returns an error or empty result
- Missing required chain parameter causes a 400 bad request
- Payment of $0.02 USDC not provided results in 402 Payment Required
- Network congestion or upstream data delays may return stale or incomplete token data
- Invalid chain name returns no results or an error message

## 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 tokens on the specified blockchain network with associated metrics such as price, volume, liquidity, market cap, and other DeFi analytics useful for identifying promising or notable tokens.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "chain": "base"
  }
 }
}
```

## 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 (e.g., base, ethereum, polygon)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chainray-token-screener-f8ebeb50/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)
