# claw402 RootData Funding Rounds Lookup

> claw402 RootData Funding Rounds Lookup 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).

Retrieves crypto project funding round data from RootData via the claw402 x402 payment gateway, payable in USDC with no API key required.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/crypto/rootdata/funding
- 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-funding-rounds-lookup-818346c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tsex5ADt01jHNDcF8S7jU

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-funding-rounds-lookup-818346c2
```

Example prompt: Pull the funding rounds for RootData project ID 12345 — show me rounds between January 2023 and December 2023, with a minimum funding amount of $1 million, page 1 with 20 results per page.

## When to prefer this

Use this endpoint when you need on-demand, pay-per-call access to RootData crypto project funding data without registering for an API key. Ideal for agents that need occasional funding lookups in USDC micropayments via the x402 protocol. Prefer this over traditional API subscriptions for low-frequency or exploratory queries about blockchain project fundraising history.

## Known failure modes

- Empty data array returned if project_id has no funding records
- Invalid or missing project_id returns code non-zero or empty data
- Date range parameters in wrong format may return no results
- Payment failure via x402 if wallet has insufficient USDC
- Rate limiting or gateway timeout if claw402 payment gateway is overloaded
- Invalid page or page_size values may result in empty or error response

## 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 funding round records for the queried project, filtered by the provided parameters such as date range, amount range, and pagination settings.

## 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"
      },
      "end_time": {
       "type": "string"
      },
      "page_size": {
       "type": "string"
      },
      "max_amount": {
       "type": "string"
      },
      "min_amount": {
       "type": "string"
      },
      "project_id": {
       "type": "string"
      },
      "start_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-funding-rounds-lookup-818346c2/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)
