# MeshPons Graduations Feed

> MeshPons Graduations Feed is a paid API for AI agents from pons.meshgateway.co, paid per call via x402, $0.07/call, status unknown (last checked 2026-09-14).

Returns a list of tokens that have graduated from the Pons v2 launchpad on Robinhood Chain, including pool state and hook-decoded data.

## Facts

- Endpoint: GET https://pons.meshgateway.co/graduations
- Price: $0.07/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/meshpons-graduations-feed-c8ddfcc5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gneo8FvslRIY-QLsH3rMY

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 meshpons-graduations-feed-c8ddfcc5
```

Example prompt: Show me the latest tokens that have graduated from Pons v2 on Robinhood Chain, including their pool state and Uniswap hook data.

## When to prefer this

Use this endpoint when you need structured, machine-readable data about tokens that have graduated from the Pons v2 launchpad on Robinhood Chain, specifically when you want graduated pool state with Uniswap hook decoding. Prefer this over scraping Pons directly since it is machine-payable per-request via x402 with no API key setup required.

## Known failure modes

- Upstream Pons API unavailable — returns proxy error or timeout
- Invalid query parameters — upstream may return 400 or empty results
- Payment not received — x402 payment required before response is served
- Rate limiting or quota exhaustion on the upstream Pons API
- No graduations found matching query filters — empty result set

## How this service works

Pons v2 launchpad and Uniswap intelligence on Robinhood Chain, from the MeshGateway team: live launch feed, full on-chain launch records, graduations, claimable creator fees, token market data, graduated-pool state with hook decoding, and on-chain swap quotes. Pays in USDG on Robinhood Chain or USDC on Base. Machine-payable per request.

## Output

Returns upstream JSON from the Pons v2 API containing graduated token records, their on-chain pool state, Uniswap hook-decoded data, graduation timestamps, and associated token metadata for tokens that have completed the bonding curve on Robinhood Chain.

## 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": {
      "limit": {
       "type": "string",
       "description": "Max graduations to return, up to 25 (default 10)"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "response": "Upstream JSON response, passed through verbatim"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/meshpons-graduations-feed-c8ddfcc5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pons.meshgateway.co](https://www.zero.xyz/host/pons.meshgateway.co/llms.txt)
