# Pearl Research L1 Telemetry API

> Pearl Research L1 Telemetry API is a paid API for AI agents from trabotpro.it, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-15).

Retrieves a snapshot of Pearl L1 network telemetry including RPC node status, community node map, and poll history

## Facts

- Endpoint: GET https://trabotpro.it/api/a2a/x402/pearl/detail
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/trabotpro-it-673a44f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KCUpk5Hl02Rb2hHVyFMFQ

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 trabotpro-it-673a44f6
```

Example prompt: Can you pull the latest Pearl L1 telemetry snapshot — I want to see the current pearld RPC node status, the community node map, and any recent poll history?

## When to prefer this

Use this endpoint when you need real-time telemetry for the Pearl L1 network specifically — including RPC node health, community node geography, and governance poll history. Prefer this over generic blockchain explorers when Pearl-specific protocol data and a structured community node map are required.

## Known failure modes

- Payment failure (402 Unpaid) if x402 USDC payment not provided or insufficient
- Stale snapshot if pearld RPC is temporarily unreachable
- Empty node map if no community nodes are registered
- Network timeout if Pearl RPC endpoint is down
- Malformed response if snapshot data is corrupted at source

## How this service works

Hero SKU: Pearl Research L1 telemetry (pearld RPC, community nodes, poll history). Free trial: GET /api/a2a/pearl/status

## Output

Returns a JSON object containing the Pearl L1 network telemetry snapshot, including: node status details (RPC health, active peers), a community node map object, a history array of recent polls, the data source identifier, and the payment method used (paid_via).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "type": "http",
   "method": "GET"
  }
 }
}
```

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "type",
      "method"
     ],
     "properties": {
      "type": {
       "enum": [
        "http"
       ],
       "type": "string"
      },
      "method": {
       "enum": [
        "GET"
       ],
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "nodes": {
       "type": "object"
      },
      "source": {
       "type": "string"
      },
      "status": {
       "type": "object"
      },
      "history": {
       "type": "array"
      },
      "paid_via": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/trabotpro-it-673a44f6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trabotpro.it](https://www.zero.xyz/host/trabotpro.it/llms.txt)
