# claw402 RootData Changes Feed

> claw402 RootData Changes 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 a list of recent changes from RootData within an optional time window, accessible via USDC micropayment with no API key required.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/crypto/rootdata/changes
- 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-changes-feed-0f002dba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zxpkFjNHXATTIvSetOOv1

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-changes-feed-0f002dba
```

Example prompt: Can you pull the RootData changes feed for everything that changed between January 1 2025 and January 31 2025?

## When to prefer this

Use this endpoint when you need to track or monitor changes in RootData crypto project data and want to pay per call in USDC without registering for an API key. Ideal for lightweight change-monitoring workflows or agents that periodically poll for updates.

## Known failure modes

- Empty data array returned if no changes exist in the specified time window
- Invalid or malformed begin_time/end_time formats may yield errors or empty results
- Payment failure via x402 protocol blocks access before the request is processed
- Service unavailability from the underlying vergex.trade or RootData provider returns non-200 responses

## 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 status code and a data array containing change records from RootData for the specified time window (or all recent changes if no time range is given).

## 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": {
      "end_time": {
       "type": "string"
      },
      "begin_time": {
       "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-changes-feed-0f002dba/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)
