# 24K Labs Tokenomics FDV Calculator

> 24K Labs 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/v1/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/24k-labs-tokenomics-fdv-calculator-b0b5e0b5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qvg-nzykOwqLWfDNUBJ-7

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 24k-labs-tokenomics-fdv-calculator-b0b5e0b5 -d '<json body>'
```

Example prompt: Calculate the market cap, FDV, circulating ratio, and implied dilution for a token priced at $0.85 with a circulating supply of 500 million and a max supply of 2 billion.

## When to prefer this

Use this endpoint when you need quick, accurate tokenomics computations — especially FDV and dilution metrics — without building the math yourself. Ideal for AI agents evaluating crypto investments, building token dashboards, or comparing tokenomics across projects. Prefer this over general-purpose calculators when you need all four metrics (market cap, FDV, circulating ratio, implied dilution) returned together in a structured format.

## Known failure modes

- Missing required inputs (price, circulating supply, or max supply) result in a validation error
- Max supply of zero or negative values cause division errors
- Circulating supply exceeding max supply returns an inconsistency error
- Invalid numeric types for supply or price fields cause a bad request error

## 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 (how much the supply could expand relative to current circulation).

## 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/24k-labs-tokenomics-fdv-calculator-b0b5e0b5/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)
