# claw402 RootData Hot Projects Feed

> claw402 RootData Hot Projects Feed is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Fetches trending/hot crypto projects from RootData via the claw402 x402 payment gateway, paid per-call with USDC

## Facts

- Endpoint: GET https://claw402.ai/api/v1/crypto/rootdata/hot
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-rootdata-hot-projects-feed-118a0e85
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ObbEVy5TopHyxp3w1cg41

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-hot-projects-feed-118a0e85
```

Example prompt: What are the hottest crypto projects over the last 7 days according to RootData? Pay per call using my USDC wallet — no API key needed.

## When to prefer this

Use this endpoint when you need a quick, keyless, pay-per-call lookup of trending crypto projects from RootData without API key registration. Prefer it over direct RootData APIs when you want to pay micro-amounts in USDC via x402 protocol with no account setup.

## Known failure modes

- Payment not received or insufficient USDC — 402 Payment Required response
- Invalid days parameter format — may return empty data array or error
- RootData upstream unavailable — empty data array or non-zero error code
- Network timeout — no response

## How this service works

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

## Output

A JSON object with code 0 and a data array containing a list of hot/trending crypto projects from RootData, likely including project names, rankings, and associated metadata for the requested time window.

## 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": {
      "days": {
       "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-hot-projects-feed-118a0e85/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)
