# claw402 RootData New Tokens Endpoint

> claw402 RootData New Tokens Endpoint is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-16).

Fetches a paginated list of newly listed cryptocurrency tokens from the RootData dataset via the claw402 x402 payment gateway

## Facts

- Endpoint: GET https://claw402.ai/api/v1/crypto/rootdata/new-tokens
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-rootdata-new-tokens-endpoint-99363682
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZYbtOKVQp8254ZDlqoJFc

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 claw402-rootdata-new-tokens-endpoint-99363682
```

Example prompt: Show me the first page of newly listed crypto tokens from RootData — fetch page 1 with 20 results per page.

## When to prefer this

Choose this endpoint when you need a lightweight, wallet-based (no API key) paginated feed of newly listed crypto tokens sourced from RootData, and you are already set up with an x402-compatible USDC wallet. Best for crypto research agents, DeFi dashboards, or token discovery workflows that need fresh listing data at low cost ($0.002 per call).

## Known failure modes

- Payment not received or insufficient USDC balance returns 402 Payment Required
- Invalid page or page_size parameter types may return a validation error
- Empty data array returned if no new tokens exist for the requested page
- Network timeout if the upstream RootData source is unavailable
- Malformed response if the upstream vergex.trade backend is degraded

## How this service works

Backed by vergex.trade. Pay for any API with USDC. No API keys. No registration. Just a wallet.

## Output

Returns a JSON object with a status code and a data array containing newly listed token records from the RootData dataset, including token metadata such as name, symbol, and related project information, paginated according to the requested page and page_size parameters.

## 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": {
      "page": {
       "type": "string"
      },
      "page_size": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "code": 0,
  "data": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/claw402-rootdata-new-tokens-endpoint-99363682/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from claw402.ai](https://www.zero.xyz/host/claw402.ai/llms.txt)
