# AgenticFi Token Supply & FDV Lookup

> AgenticFi Token Supply & FDV Lookup 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 circulating supply, total supply, max supply, and fully diluted valuation (FDV) for a token by CoinGecko ID

## Facts

- Endpoint: GET https://defi-api.agenticfi.wtf/api/token/supply/ethereum
- 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-token-supply-fdv-lookup-ceba5977
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Kq4XlMs-4Wndroh-iYGzL

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-token-supply-fdv-lookup-ceba5977
```

Example prompt: What's the circulating supply, total supply, max supply, and fully diluted valuation for Ethereum right now?

## When to prefer this

Use this endpoint when you need tokenomics data — specifically circulating, total, or max supply and FDV — for a specific token identified by its CoinGecko ID. Prefer this over general price endpoints when the user is asking about supply metrics or wants to understand dilution. It is well-suited for AI agents that need on-demand, pay-per-call token supply data without managing a full CoinGecko API subscription.

## Known failure modes

- Invalid CoinGecko token ID returns a 404 or error response
- Token has no max supply (e.g. Ethereum) — max supply field may be null
- Payment failure (x402) if USDC balance is insufficient
- Rate limiting or upstream CoinGecko API unavailability causing 503

## How this service works

Circulating, total, max supply + FDV for a token

## Output

Returns a JSON object containing circulating supply, total supply, max supply, and fully diluted valuation (FDV) for the requested token, sourced from CoinGecko data.

## 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": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "title": "id (required)",
       "description": "Required. CoinGecko token ID.\nTry one of these 10 examples: bitcoin, ethereum, solana, chainlink, uniswap, aave, maker, dogecoin, pepe, arbitrum"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "title": "id (required)",
       "description": "Required. CoinGecko token ID.\nTry one of these 10 examples: bitcoin, ethereum, solana, chainlink, uniswap, aave, maker, dogecoin, pepe, arbitrum"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenticfi-token-supply-fdv-lookup-ceba5977/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)
