# Sylphy Token Info Lookup by Contract Address

> Sylphy Token Info Lookup by Contract Address is a paid API for AI agents from api.sylphyagent.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns ERC-20 token metadata (name, symbol, decimals) for a given contract address on the Base network

## Facts

- Endpoint: GET https://api.sylphyagent.com/api/token/%7Baddress%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sylphy-token-info-lookup-by-contract-address-756029e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GAAIa4aqPGjILNuw4Vna-

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 sylphy-token-info-lookup-by-contract-address-756029e3
```

Example prompt: What token is at contract address 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 on Base — can you give me the name, symbol, and decimals?

## When to prefer this

Use this endpoint when you need to resolve a raw ERC-20 contract address on Base to its human-readable token metadata (name, symbol, decimals) — especially useful before executing trades, payments, or settlements where you need to confirm token identity and precision.

## Known failure modes

- Invalid or malformed contract address returns an error
- Contract address exists but is not an ERC-20 token may return empty or null fields
- Address not deployed on Base network may return 404 or empty result
- Network congestion or RPC issues may cause timeouts
- Payment of 0.01 USDC not provided results in 402 Payment Required

## How this service works

Sylphy helps wallets, apps, and AI agents execute payments and settlements with encrypted intent, policy checks, and audit proofs — while final settlement remains verifiable on Base.

## Output

A JSON object containing the token's name (e.g. 'USD Coin'), symbol (e.g. 'USDC'), contract address, and decimal precision (e.g. 6) for the specified ERC-20 contract on Base.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
  }
 }
}
```

## 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": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "name": "USD Coin",
  "symbol": "USDC",
  "address": "0x833...",
  "decimals": 6
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sylphy-token-info-lookup-by-contract-address-756029e3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.sylphyagent.com](https://www.zero.xyz/host/api.sylphyagent.com/llms.txt)
