# PerCall Uniswap v4 Pool Search on Robinhood Chain

> PerCall Uniswap v4 Pool Search on Robinhood Chain is a paid API for AI agents from percall.kimi.pro, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Search Uniswap v4 liquidity pools on Robinhood Chain by token symbol, name, or contract address, returning pool details and USD/ETH prices.

## Facts

- Endpoint: GET https://percall.kimi.pro/api/x402/dex/search/:query
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/percall-uniswap-v4-pool-search-on-robinhood-chain-d7129b01
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2cQN2sevIIt6v8wL69AYB

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 percall-uniswap-v4-pool-search-on-robinhood-chain-d7129b01
```

Example prompt: Can you search Robinhood Chain's Uniswap v4 pools for the CASHCAT token and tell me the current USD price and which pools it trades in?

## When to prefer this

Use this endpoint when you need to discover Uniswap v4 liquidity pools and on-chain prices specifically on Robinhood Chain (eip155:4663). It is ideal for token discovery by symbol or name when you don't have the contract address, and for full chain scans when you do have an address. Prefer this over generic crypto price APIs when you need DEX pool-level detail (pool IDs, fee tiers, paired currencies) rather than just a spot price.

## Known failure modes

- Token symbol not found in recently indexed pools — returns empty results array
- Contract address not recognized or no pools exist for that token — count 0
- Invalid query format (malformed address) — may return error or empty results
- RPC connectivity issues causing delayed or failed chain-native price computation
- Symbol queries only cover recently indexed pools, so older or low-volume tokens may be missing

## How this service works

PerCall is an x402 payment gateway selling live crypto market data to AI agents and developers. No accounts, no API keys: request, receive HTTP 402, pay in USDC on Base, get data.

## Output

A JSON object containing the query string, source ('chain-rpc'), chain identifier ('Robinhood Chain eip155:4663'), a count of matching pools, a timestamp, and an array of pool results — each with pool ID, fee tier, USD price, and details (name, symbol, address) for both currency0 and currency1.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "query"
     ],
     "properties": {
      "query": {
       "type": "string",
       "description": "Token symbol, name or full 0x contract address, e.g. CASHCAT."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chain": "Robinhood Chain (eip155:4663)",
  "count": 1,
  "query": "CASHCAT",
  "source": "chain-rpc",
  "results": [
   {
    "fee": 10000,
    "poolId": "0xabc…",
    "priceUsd": 0.0123,
    "currency0": {
     "name": "Cash Cat",
     "symbol": "CASHCAT",
     "address": "0x…"
    },
    "currency1": {
     "symbol": "ETH",
     "address": "0x0000…0000"
    }
   }
  ],
  "timestamp": "2026-08-28T00:00:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/percall-uniswap-v4-pool-search-on-robinhood-chain-d7129b01/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from percall.kimi.pro](https://www.zero.xyz/host/percall.kimi.pro/llms.txt)
