# MeshPons Launches Feed

> MeshPons Launches 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-13).

Retrieves the live launch feed for Pons v2 tokens on Robinhood Chain, including full on-chain launch records and token market data

## Facts

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

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-launches-feed-cc3a9694
```

Example prompt: Pull the latest token launches from the Pons v2 launchpad on Robinhood Chain so I can see what's gone live recently.

## When to prefer this

Use this endpoint when you need real-time or historical token launch data specifically from the Pons v2 launchpad on Robinhood Chain, especially when you want machine-payable per-request access without a subscription. Prefer this over generic block explorers or DEX APIs when you need Pons-specific launch intelligence including on-chain records and market data in one call.

## Known failure modes

- Upstream Pons API unavailable — returns an error or empty response
- Invalid or unsupported query parameters — upstream may return 400 or empty data
- No launches available matching query criteria — empty result set
- Payment failure (x402) — request rejected if USDG/USDC payment not processed
- Network timeout reaching Robinhood Chain data source

## 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 array or object of token launch records from the Pons v2 launchpad on Robinhood Chain, including on-chain launch details, token market data, and metadata about each launched token, passed through verbatim from the upstream Pons API.

## 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 launches to return, up to 50 (default 20)"
      }
     },
     "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-launches-feed-cc3a9694/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)
