# AgenticFi EVM Token Info by Contract Address

> AgenticFi EVM Token Info by Contract Address is a paid API for AI agents from defi-api.agenticfi.wtf, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns metadata, real-time price, supply fields, logo, and optional historical prices for an EVM ERC-20 token or native asset given its contract address and chain ID

## Facts

- Endpoint: GET https://defi-api.agenticfi.wtf/api/token/info/:address
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenticfi-evm-token-info-by-contract-address-2ceb6d99
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V88mY5vMch7Um_SV8VlB5

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 agenticfi-evm-token-info-by-contract-address-2ceb6d99
```

Example prompt: Pull the full token info for Base USDC — contract address 0x833589fCD6EDB6E08f4c7C32D4f71b54bdA02913 on chain 8453 — including current price and historical prices at 24, 168, and 720 hours ago.

## When to prefer this

Use this endpoint when you need comprehensive token metadata — name, symbol, decimals, logo, real-time price, supply figures, and optional historical prices — for a specific ERC-20 contract address or native asset on an EVM chain. Prefer this over the CoinGecko-ID price endpoint when you have a contract address rather than a CoinGecko ID or symbol, or when you need richer metadata beyond just price.

## Known failure modes

- Invalid or unrecognized contract address returns 404 or empty result
- Missing required chain_ids parameter causes a 400 validation error
- Token not indexed on the specified chain returns empty or null data
- Historical price offsets exceeding allowed count (>3) may be rejected
- Rate limiting or payment failure returns 402 Payment Required

## How this service works

EVM token info by contract address or native asset - metadata, realtime price, supply fields, logo, and optional historical prices

## Output

Returns a JSON object with token metadata (name, symbol, decimals, logo), real-time price, market cap, circulating and total supply, and optionally price snapshots at requested historical hour offsets.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "pathParams",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "title": "address (required)",
       "description": "Required. ERC-20 contract address or 'native' for the chain-native asset.\nExamples: native, 0x833589fCD6EDB6E08f4c7C32D4f71b54bdA02913 (Base USDC), 0x4200000000000000000000000000000000000006 (Base WETH), 0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca (Base USDbC)"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address",
      "chain_ids"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "title": "chain (optional)",
       "description": "Optional. Legacy gateway alias for a single chain name, mapped to chain_ids Examples: base, ethereum, arbitrum"
      },
      "limit": {
       "type": "string",
       "title": "limit (optional)",
       "description": "Optional. Maximum number of token rows to return, 1-100 Examples: 100, 500"
      },
      "offset": {
       "type": "string",
       "title": "offset (optional)",
       "description": "Optional. Pagination cursor returned in next_offset Examples: eyJvZmZzZXQiOjEwMH0= (use next_offset from the previous response)"
      },
      "address": {
       "type": "string",
       "title": "address (required)",
       "description": "Required. ERC-20 contract address or 'native' for the chain-native asset.\nExamples: native, 0x833589fCD6EDB6E08f4c7C32D4f71b54bdA02913 (Base USDC), 0x4200000000000000000000000000000000000006 (Base WETH), 0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca (Base USDbC)"
      },
      "chain_ids": {
       "type": "string",
       "title": "chain_ids (required)",
       "description": "Required single chain ID, e.g. '8453' Examples: 8453, 1,8453, default"
      },
      "historical_prices": {
       "type": "string",
       "title": "historical_prices (optional)",
       "description": "Optional. Comma-separated hour offsets, up to 3 values, e.g. '720,168,24' Examples: 720,168,24"
      }
     }
    }
   },
   "additionalProperties
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenticfi-evm-token-info-by-contract-address-2ceb6d99/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from defi-api.agenticfi.wtf](https://www.zero.xyz/host/defi-api.agenticfi.wtf/llms.txt)
