# claw402 RootData Search via x402 Payment Gateway

> claw402 RootData Search via x402 Payment Gateway 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).

Search RootData (crypto/Web3 project database) by query string, paid per-call with USDC via x402 protocol — no API key required.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/crypto/rootdata/search
- 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-search-via-x402-payment-gateway-5aa59dbe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R_mAbQZMrRQlDJbcnnu6g

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-search-via-x402-payment-gateway-5aa59dbe
```

Example prompt: Search RootData for 'Uniswap' and give me whatever project info comes back — pay the $0.002 USDC fee per call, no API key needed.

## When to prefer this

Use this endpoint when you need to search the RootData crypto/Web3 project database without obtaining a traditional API key, and you have a USDC-enabled wallet to pay $0.002 per call via the x402 protocol. Prefer this over direct RootData API access when you want keyless, wallet-native access to Web3 project search data.

## Known failure modes

- Payment not received or insufficient USDC — 402 response requiring payment
- Empty data array returned when query matches no RootData projects
- Invalid query parameter format — missing required 'query' param
- Upstream RootData API unavailable — proxy error or timeout
- Wallet not recognized or x402 handshake fails — payment rejected

## 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 a code field (0 = success) and a data array containing matching crypto/Web3 project records from the RootData database, including project metadata such as name, description, and related on-chain details.

## 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": {
      "query": {
       "type": "string"
      },
      "precise_x_search": {
       "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-search-via-x402-payment-gateway-5aa59dbe/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)
