# MeshPons Pool State Endpoint

> MeshPons Pool State Endpoint 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-13).

Returns on-chain state and hook-decoded data for a Pons v2 graduated Uniswap pool on Robinhood Chain

## Facts

- Endpoint: GET https://pons.meshgateway.co/pool
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/meshpons-pool-state-endpoint-8f67a6f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7v81IPO2cqDXsuAO3gclD

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-pool-state-endpoint-8f67a6f4
```

Example prompt: Can you pull the current on-chain pool state for the graduated Pons v2 token at pool address 0xABC123 on Robinhood Chain, including hook-decoded data?

## When to prefer this

Use this endpoint when you need the detailed on-chain state of a specific pool that has already graduated from the Pons v2 launchpad on Robinhood Chain, especially when you need hook-decoded data. This is the right choice over generic blockchain RPCs because it provides pre-decoded hook state and structured pool data without manual ABI decoding.

## Known failure modes

- Invalid or non-existent pool address returns an error or empty response
- Pool not yet graduated returns no data or an error indicating pre-graduation state
- Network issues with Robinhood Chain RPC cause timeouts or stale data
- Missing required query parameters cause a 400 or upstream error
- Payment failure (insufficient USDG/USDC) returns 402 Payment Required

## 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 with the graduated Uniswap pool's on-chain state, including hook-decoded fields, liquidity data, and pool metrics for the specified Pons v2 pool 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",
     "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-pool-state-endpoint-8f67a6f4/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)
