# claw402 RootData Organization Lookup

> claw402 RootData Organization 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).

Fetches organization 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/org
- 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-organization-lookup-281fb1c3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_64L0tAopJaJBBPxMxR7Tm

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-organization-lookup-281fb1c3
```

Example prompt: Can you look up the RootData organization profile for org ID '12345', including their team members and investment history, and pay the $0.002 USDC fee per the x402 protocol?

## When to prefer this

Use this endpoint when you need organization-level data from RootData (a crypto/Web3 intelligence platform) without registering for a traditional API key, and you can pay $0.002 USDC per call via x402 crypto micropayment. Prefer this over direct RootData API if you lack a RootData subscription or want permissionless, wallet-based access.

## Known failure modes

- Invalid or unknown org_id returns empty data array
- Insufficient USDC balance causes payment failure and no data returned
- Missing required org_id parameter results in an error response
- Network or gateway timeout from claw402 or RootData upstream
- include_team or include_investments passed with invalid values may be ignored or error

## 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 the organization's profile from RootData, optionally including team members and investment records depending on query 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": {
      "org_id": {
       "type": "string"
      },
      "include_team": {
       "type": "string"
      },
      "include_investments": {
       "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-organization-lookup-281fb1c3/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)
