# Sylphy Agent ERC-20 Token Info Lookup

> Sylphy Agent ERC-20 Token Info Lookup is a paid API for AI agents from api.sylphyagent.com, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Returns ERC-20 token metadata and information for a given contract address on the Base blockchain network

## Facts

- Endpoint: GET https://api.sylphyagent.com/api/token/:address
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sylphy-agent-erc-20-token-info-lookup-361e35e8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jQt4wcwO4ca768hiqxIw1

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-agent-erc-20-token-info-lookup-361e35e8
```

Example prompt: Can you look up the ERC-20 token info for contract address 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 on Base — I need the token name, symbol, and decimals.

## When to prefer this

Use this endpoint when you need to resolve ERC-20 token metadata (name, symbol, decimals) from a contract address specifically on the Base L2 network. Prefer this over generic blockchain explorers when you need a lightweight, pay-per-call programmatic API response rather than a web scrape, or when operating within a Base/DeFi agent workflow.

## Known failure modes

- Invalid or malformed contract address returns an error
- Contract address does not correspond to an ERC-20 token on Base
- Contract exists but is not verified or has no metadata
- Network or RPC issues cause a timeout
- Payment of $0.01 USDC not received, returning 402 Payment Required

## How this service works

Look up ERC-20 token info by contract address on Base

## Output

Returns ERC-20 token metadata for the queried Base contract address, including the token name, symbol, decimal precision, and other on-chain contract details

## 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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sylphy-agent-erc-20-token-info-lookup-361e35e8/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)
