# OnchainPulse Glossary

> OnchainPulse Glossary is a paid API for AI agents from onchainpulse-nine.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns plain-English definitions for onchain finance, blockchain, and regulatory terminology

## Facts

- Endpoint: GET https://onchainpulse-nine.vercel.app/api/glossary
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/onchainpulse-glossary-79a132ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eJEr_oni_I6sk18F7UADf

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 onchainpulse-glossary-79a132ba
```

Example prompt: Can you explain what 'impermanent loss' means in plain English using the OnchainPulse glossary?

## When to prefer this

Use this endpoint when a user needs a clear, plain-English explanation of a specific blockchain, DeFi, or onchain regulatory term. Ideal for decoding jargon encountered in smart contract documentation, DeFi protocols, or crypto regulatory filings. Prefer over general-purpose LLM knowledge when you need a curated, authoritative definition specifically scoped to onchain finance.

## Known failure modes

- Term not found in glossary — may return empty or 404 response
- Ambiguous term with multiple meanings in different contexts may return a generic definition
- Network or server error returns 5xx status
- Payment not processed correctly returns 402 Payment Required

## How this service works

Plain-English decoder for onchain finance, blockchain and regulatory terminology. For research and financial agents.

## Output

A plain-English definition or explanation of the requested blockchain, DeFi, or regulatory term, decoded from technical jargon into accessible language for non-expert users.

## Example request

```json
{
 "lang": "en",
 "term": "atomic settlement",
 "context": "technical"
}
```

## 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",
     "properties": {
      "q": {
       "type": "string",
       "description": "RWA | MEV | restaking | L2 | zkEVM | tokenization | DePIN | LRT"
      },
      "lang": {
       "type": "string",
       "description": "en | de | fr | es | zh | ja | ko | pt | ar"
      },
      "context": {
       "type": "string",
       "description": "defi | nft | trading | regulatory | general"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "full": "Real World Asset",
  "term": "RWA",
  "examples": [
   "ONDO tokenized US Treasuries",
   "RealT tokenized real estate",
   "Maple Finance credit"
  ],
  "definition": "Tokenized representation of an off-chain asset on a blockchain",
  "key_protocols": [
   "Ondo",
   "Centrifuge",
   "Maple"
  ],
  "market_size_2026": "$12.4B TVL"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/onchainpulse-glossary-79a132ba/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from onchainpulse-nine.vercel.app](https://www.zero.xyz/host/onchainpulse-nine.vercel.app/llms.txt)
