# Tokenomics FDV Calculator

> Tokenomics FDV Calculator is a paid API for AI agents from api.24klabs.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Calculates market cap, fully-diluted valuation (FDV), circulating ratio, and implied dilution from token price, circulating supply, and max/total supply.

## Facts

- Endpoint: POST https://api.24klabs.ai/api/tokenomics-fdv-calculator
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenomics-fdv-calculator-50c609a3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pufn085xZ7gGuuccPffU6

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 tokenomics-fdv-calculator-50c609a3 -d '<json body>'
```

Example prompt: Calculate the fully-diluted valuation and implied dilution for a token priced at $0.45 with a circulating supply of 800 million and a max supply of 2 billion.

## When to prefer this

Use this endpoint when you need fast, on-demand tokenomics calculations without querying a live market data API — ideal when you already have the price and supply figures and just need the derived metrics (FDV, dilution, circulating ratio) computed correctly. Prefer this over manual calculation or general-purpose LLM math when precision and structured output are required.

## Known failure modes

- Missing required fields (token price, circulating supply, or max supply) result in a validation error
- Max supply less than circulating supply triggers an invalid input error
- Zero or negative price/supply values cause computation errors
- Extremely large supply numbers may cause precision issues in the response

## How this service works

Market cap, fully-diluted valuation, circulating ratio and implied dilution from token price, circulating supply and max/total supply.

## Output

Returns the market capitalization (price × circulating supply), fully-diluted valuation (price × max/total supply), circulating ratio (circulating supply / max supply as a percentage), and implied dilution factor representing how much the token supply could expand.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "price": {
   "type": "number"
  },
  "max_supply": {
   "type": "number"
  },
  "circulating_supply": {
   "type": "number"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "fdv": 2500000000,
  "market_cap": 250000000,
  "circulating_ratio_pct": 10
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenomics-fdv-calculator-50c609a3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.24klabs.ai](https://www.zero.xyz/host/api.24klabs.ai/llms.txt)
