# Vesting Ledger Stream Lookup via Komion

> Vesting Ledger Stream Lookup via Komion is a paid API for AI agents from vesting-ledger.rongrongerong.chatgpt.site, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches detailed data for a specific Sablier Base v2.0 vesting stream by stream ID, returning events, amounts, reconciliation, and provenance on Base (chain 8453), paid per-request in USDC via x402.

## Facts

- Endpoint: GET https://vesting-ledger.rongrongerong.chatgpt.site/api/v1/streams
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vesting-ledger-stream-lookup-via-komion-c56d80bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ytk-aWDo5BN9l9FOUSQsF

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 vesting-ledger-stream-lookup-via-komion-c56d80bd
```

Example prompt: Can you pull up the full vesting details for Sablier Base v2 stream ID 18118 — I want to see the events, amounts vested so far, and any reconciliation data?

## When to prefer this

Use this endpoint when you need structured, payment-gated, per-stream vesting data from Sablier Base v2.0 on the Base network (chain 8453), especially when you require reconciliation and provenance metadata alongside event history. Prefer this over direct on-chain RPC calls when you want a normalized JSON/CSV response with schema versioning, and when per-call USDC micropayment pricing fits your usage pattern.

## Known failure modes

- Invalid stream_id format (must match ^[1-9][0-9]{0,9}$) returns a validation error
- Stream ID not found on Base chain returns empty or 404-equivalent response
- Payment failure (insufficient USDC balance or x402 auth issue) blocks the request
- Network or RPC errors querying Base chain data may return a 500
- Requesting a non-existent or deprecated stream ID returns no events

## How this service works

A payment-and-delivery pilot for AI agents: USDC per request, saved responses and payment-aware retries. Vesting Ledger is the first live API integration.

## Output

A JSON object containing schema_version, stream_id, chain_id (8453 for Base), observed_at_utc timestamp, an array of up to 500 vesting events, amounts (vested/unvested/total), provenance metadata, and reconciliation details for the requested Sablier stream.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "stream_id"
     ],
     "properties": {
      "format": {
       "enum": [
        "json",
        "csv"
       ],
       "type": "string",
       "default": "json"
      },
      "stream_id": {
       "type": "string",
       "pattern": "^[1-9][0-9]{0,9}$",
       "description": "Sablier Base v2.0 stream ID"
      }
     },
     "additionalProperties": false
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object",
     "required": [
      "schema_version",
      "stream_id",
      "chain_id"
     ],
     "properties": {
      "events": {
       "type": "array",
       "items": {
        "type": "object"
       },
       "maxItems": 500
      },
      "amounts": {
       "type": "object"
      },
      "chain_id": {
       "type": "integer",
       "const": 8453
      },
      "stream_id": {
       "type": "string"
      },
      "provenance": {
       "type": "object"
      },
      "reconciliation": {
       "type": "object"
      },
      "schema_version": {
       "type": "string"
      },
      "observed_at_utc": {
       "type": "string",
       "format": "date-time"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chain_id": 8453,
  "stream_id": "18118",
  "schema_version": "1.0.0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vesting-ledger-stream-lookup-via-komion-c56d80bd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vesting-ledger.rongrongerong.chatgpt.site](https://www.zero.xyz/host/vesting-ledger.rongrongerong.chatgpt.site/llms.txt)
