# claw402 RootData People Lookup via x402

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

Retrieves people/person profile data from RootData via a USDC-paid x402 API gateway, identified by a people_id query parameter

## Facts

- Endpoint: GET https://claw402.ai/api/v1/crypto/rootdata/people
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-rootdata-people-lookup-via-x402-744681e2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_co-BhFJ9E_xGKsWfbceEI

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-people-lookup-via-x402-744681e2
```

Example prompt: Look up the RootData profile for the person with ID '12345' — I want to see their details and background.

## When to prefer this

Use this endpoint when you need to look up a specific person's profile from RootData by their people_id, want to pay per-call in USDC without registering for an API key, and are building in a Web3/crypto context where micropayment-based access is preferred over traditional API key management.

## Known failure modes

- Missing or invalid people_id returns empty data array
- Insufficient USDC balance causes payment failure and no data returned
- Unknown people_id returns code 0 with empty data array
- Network or gateway timeout from vergex.trade backend
- RootData upstream API unavailability causing failed lookup

## 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 code field (0 = success) and a data array containing the person's profile information as stored in RootData, paid via $0.002 USDC per call with no API key required.

## 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": {
      "people_id": {
       "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-people-lookup-via-x402-744681e2/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)
