# MeshPons On-Chain Swap Quote

> MeshPons On-Chain Swap Quote 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-15).

Returns an on-chain swap quote for tokens on Robinhood Chain via Pons v2 / Uniswap, including price, route, and hook-decoded pool state.

## Facts

- Endpoint: GET https://pons.meshgateway.co/quote
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/meshpons-on-chain-swap-quote-5300f47b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3JpYpm85-M_kjTfbaWOGD

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-on-chain-swap-quote-5300f47b
```

Example prompt: What's the current on-chain swap quote to trade 100 USDC for WETH on Pons v2 on Robinhood Chain?

## When to prefer this

Choose this endpoint when you need a real-time on-chain swap quote specifically for tokens on Robinhood Chain using the Pons v2 / Uniswap infrastructure, especially when you need hook-decoded pool state or are working with Pons launchpad-graduated tokens. Prefer over generic DEX aggregators when Robinhood Chain coverage is required.

## Known failure modes

- Invalid or unsupported token address returns an error or empty result
- Token pair with no liquidity pool returns no quote
- Malformed query parameters result in upstream API error
- Network issues on Robinhood Chain cause timeout or unavailable response
- Payment failure (insufficient USDC/USDG balance) blocks the request

## 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 with the on-chain swap quote from Pons v2 / Uniswap on Robinhood Chain, including expected output amount, swap route, pool state with hook decoding, and price impact data, passed through verbatim from the upstream 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",
     "required": [
      "token",
      "amountIn"
     ],
     "properties": {
      "side": {
       "enum": [
        "buy",
        "sell"
       ],
       "type": "string",
       "description": "buy = ETH to token, sell = token to ETH (default buy)"
      },
      "token": {
       "type": "string",
       "description": "ERC-20 address of the Pons launch token"
      },
      "amountIn": {
       "type": "string",
       "description": "Decimal input amount: ETH for side=buy, tokens for side=sell"
      }
     },
     "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-on-chain-swap-quote-5300f47b/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)
