# MeshPons Claimable Creator Fees

> MeshPons Claimable Creator Fees 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 claimable creator fee balances for tokens launched on the Pons v2 launchpad on Robinhood Chain

## Facts

- Endpoint: GET https://pons.meshgateway.co/fees
- 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-claimable-creator-fees-6eeeed40
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A2H9H_5J594G5SysiTpeQ

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-claimable-creator-fees-6eeeed40
```

Example prompt: Check what claimable creator fees I have on the Pons v2 launchpad on Robinhood Chain for my wallet address 0xAbC123...

## When to prefer this

Use this endpoint when you need to check claimable creator fee balances specifically on the Pons v2 launchpad on Robinhood Chain. Prefer this over generic blockchain RPC calls when you want a pre-parsed, machine-payable API response without writing custom contract interaction logic. Especially useful for agents automating creator fee monitoring or withdrawal workflows on the Pons launchpad.

## Known failure modes

- Invalid or missing query parameters returning empty or error response
- Network latency or upstream Pons API unavailability causing timeout
- Wallet or token address not found on Robinhood Chain returning empty results
- Payment failure (insufficient USDC/USDG balance) blocking request
- Malformed address format causing upstream rejection

## 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 claimable creator fee balances associated with token launches on the Pons v2 launchpad on Robinhood Chain, including fee amounts and relevant token or creator identifiers, 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": {
      "token": {
       "type": "string",
       "description": "Launch token address; resolves its current fee recipient"
      },
      "recipient": {
       "type": "string",
       "description": "Fee recipient address (alternative to 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-claimable-creator-fees-6eeeed40/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)
