# MeshPons Market Data

> MeshPons Market Data 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).

Fetches token market data from the Pons v2 launchpad on Robinhood Chain, including live launches, on-chain records, graduations, creator fees, and graduated-pool state.

## Facts

- Endpoint: GET https://pons.meshgateway.co/market
- 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-market-data-c05aa4fe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_avlLSeux9jlCWFNG-_-K7

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-market-data-c05aa4fe
```

Example prompt: Can you pull the current market data for the latest token launches on Pons v2 on Robinhood Chain, including which ones have graduated and any claimable creator fees?

## When to prefer this

Choose this endpoint when you need real-time Pons v2 launchpad intelligence on Robinhood Chain — specifically live launch feeds, graduation tracking, creator fee lookups, Uniswap pool state with hook decoding, or on-chain swap quotes. Prefer it over generic chain explorers when you need Pons-specific structured market data without building your own on-chain indexer. It is machine-payable per request via x402, making it suitable for autonomous agent workflows.

## Known failure modes

- Invalid or missing query parameters return upstream API errors
- Token address not found on Robinhood Chain returns empty or error response
- Payment failure (insufficient USDG/USDC) results in 402 response before data is returned
- Upstream Pons API downtime causes proxy errors
- Rate limiting if too many calls are made in short succession

## 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 including token market data, live launch records, graduation status, claimable creator fee amounts, graduated Uniswap pool state with decoded hooks, and on-chain swap quotes — passed through verbatim.

## 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-market-data-c05aa4fe/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)
