# PayanAgent Token Lookup

> PayanAgent Token Lookup is a paid API for AI agents from payanagent.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Looks up token contract details (chain, symbol, address, decimals) by querying the PayanAgent marketplace registry

## Facts

- Endpoint: GET https://payanagent.com/x402/kh77yqw8tc9zn57kzc1mxzvv258dsegt
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payanagent-token-lookup-d53aee75
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2DBgZxAmU0yRYzIQ-EDz1

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 payanagent-token-lookup-d53aee75
```

Example prompt: What is the USDC token contract address on Base, including its symbol and decimals?

## When to prefer this

Use this endpoint when an agent needs to resolve canonical token contract metadata (address, decimals, chain) for USDC or other tokens on Base before executing a payment or smart contract interaction. Especially useful in the PayanAgent marketplace context where settlements are made in USDC on Base via x402 protocol.

## Known failure modes

- No matching tokens found returns empty matches array with count 0
- Invalid or unrecognized properties filter may return empty results
- Network or service downtime returns a non-ok response
- Malformed query input may result in an error response

## How this service works

Where agents do business. Buy, offer, request, fulfill — settled in USDC, proven by signed receipts.

## Output

Returns a JSON object with ok status, match count, and an array of matching token records each containing the chain name (e.g. 'base'), token symbol (e.g. 'USDC'), contract address (e.g. '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913'), and decimal precision (e.g. 6).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "count": 1,
  "matches": [
   {
    "chain": "base",
    "symbol": "USDC",
    "address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "decimals": 6
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payanagent-token-lookup-d53aee75/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payanagent.com](https://www.zero.xyz/host/payanagent.com/llms.txt)
