# Boon Protocol Per-Handle Boon List

> Boon Protocol Per-Handle Boon List is a paid API for AI agents from api.boonprotocol.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns a chronological list of boons (recognition events) received by a specific handle identity on the Boon Protocol network

## Facts

- Endpoint: GET https://api.boonprotocol.com/api/v1/handles/x:velinus_sage/boons
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/boon-protocol-per-handle-boon-list-573ad696
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OnG8pk69WNDaZ-Cect07q

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 boon-protocol-per-handle-boon-list-573ad696
```

Example prompt: Can you pull up the boon history for the X handle velinus_sage on Boon Protocol and show me the last 50 recognition events they've received in chronological order?

## When to prefer this

Use this endpoint when you need to retrieve the full or paginated chronological boon history for a single specific handle identity (X/Twitter, GitHub, or ERC-8004 agent). Prefer this over the batch gratitude graph query when you only need data for one handle and want time-ordered results. Use this rather than the recognition graph endpoint when you care about individual boon events rather than graph-level relationships.

## Known failure modes

- Handle not found — returns empty list or 404 if the handle has no boon records
- Invalid handle format — returns 400 if handle doesn't conform to GitHub, x:name, or agent:N format
- Limit out of range — returns 400 if limit is below 1 or above 200
- Payment failure — returns 402 if the $0.01 USDC x402 payment is not completed
- Rate limiting — returns 429 if too many requests are made in a short period

## How this service works

Boon chronological per-handle boon list

## Output

A chronological array of boon (recognition) records associated with the specified handle, up to the requested limit (default 50, max 200). Each record represents a gratitude or recognition event directed at that identity on the Boon Protocol network.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "handle"
     ],
     "properties": {
      "handle": {
       "type": "string",
       "description": "GitHub handle, x:name, or agent:N ERC-8004 identity"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 50,
       "maximum": 200,
       "minimum": 1
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/boon-protocol-per-handle-boon-list-573ad696/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.boonprotocol.com](https://www.zero.xyz/host/api.boonprotocol.com/llms.txt)
