# MeshPons Launch Feed

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

Returns the live launch feed of tokens launched on the Pons v2 launchpad on Robinhood Chain

## Facts

- Endpoint: GET https://pons.meshgateway.co/launch
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/meshpons-launch-feed-5e817ab7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_07emO7rZjIJ2MvVUMkKrU

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-launch-feed-5e817ab7
```

Example prompt: Pull the live token launch feed from the Pons v2 launchpad on Robinhood Chain and show me what's just been launched in the last few minutes.

## When to prefer this

Use this endpoint when you need live or recent token launch data specifically from the Pons v2 launchpad on Robinhood Chain, including launch records, graduation events, and token market data. Prefer this over generic DeFi data aggregators when you need Pons-specific launchpad intelligence with machine-payable per-request pricing.

## Known failure modes

- Upstream Pons API unavailable — returns error or timeout
- Invalid or unsupported query parameters — may return empty results or upstream error
- Payment failure via x402 — request blocked before reaching upstream
- Rate limiting or per-request payment issues on Robinhood Chain or Base

## 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 a JSON object containing the live launch feed of tokens on the Pons v2 launchpad on Robinhood Chain, including on-chain launch records, token market data, graduation events, and related metadata — passed through verbatim from upstream.

## 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",
     "required": [
      "token"
     ],
     "properties": {
      "token": {
       "type": "string",
       "description": "ERC-20 address of the Pons launch token"
      }
     },
     "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-launch-feed-5e817ab7/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)
