Base URL
https://api.fundingcloud.com
Sector Index Endpoints
Returns the most recent Sector Index calculation including the composite index score, CMR ratio, total market cap, and per-token weight breakdown.
curl https://api.fundingcloud.com/api/tokenmarket/index/latest
const res = await fetch('https://api.fundingcloud.com/api/tokenmarket/index/latest');
const data = await res.json();
console.log('Index Score:', data.indexValue);
console.log('CMR Ratio:', data.cmrRatio);
Example Response
{
"indexValue": 72.4,
"cmrRatio": 1.8432,
"timestamp": "2026-06-16T13:00:00Z",
"totalMarketCap": 18420000000,
"totalVolume24h": 890000000,
"tokens": [
{ "symbol": "RNDR", "priceUSD": 7.24, "weight": 0.28, "change24h": 3.1 },
{ "symbol": "TAO", "priceUSD": 412.0, "weight": 0.22, "change24h": -1.4 }
]
}
Response Fields
| Field | Type | Description |
|---|---|---|
| indexValue | number | Composite sector index score (0–100+) |
| cmrRatio | number | Compute-to-Market Ratio (index ÷ compute cost) |
| timestamp | string | ISO 8601 time of calculation |
| totalMarketCap | number | Sum of tracked token market caps (USD) |
| totalVolume24h | number | Sum of 24h trading volumes (USD) |
| tokens | array | Per-token breakdown with weight, price, change |
Returns historical Sector Index records in chronological order. Use the timeframe query param to control the lookback window.
Query Parameters
| Param | Values | Default |
|---|---|---|
| timeframe | 24h, 7d, 30d | 24h |
curl "https://api.fundingcloud.com/api/tokenmarket/index/history?timeframe=7d"
Example Response
[
{
"timestamp": "2026-06-10T00:00:00Z",
"indexValue": 68.1,
"cmrValue": 1.7201,
"totalMarketCap": 17800000000,
"totalVolume24h": 780000000
},
...
]
Live Market Endpoints
Returns live per-token prices, 24h price change, and market volume for all tracked AI compute tokens. Sorted by volume descending.
curl https://api.fundingcloud.com/api/tokenmarket/live/prices
Example Response
[
{
"id": "render-token",
"symbol": "RNDR",
"priceUSD": 7.24,
"change24h": 3.12,
"marketVolume": 120000000
},
{
"id": "bittensor",
"symbol": "TAO",
"priceUSD": 412.0,
"change24h": -1.4,
"marketVolume": 98000000
}
]
Response Fields (per token)
| Field | Type | Description |
|---|---|---|
| id | string | CoinGecko token identifier |
| symbol | string | Token ticker symbol |
| priceUSD | number | Current price in USD |
| change24h | number | 24h price change (%) |
| marketVolume | number | 24h trading volume |
Returns a single-object aggregated market summary across all tracked tokens — total market cap, total volume, overall trend, and active ticker count.
curl https://api.fundingcloud.com/api/tokenmarket/live/summary
Example Response
{
"totalMarketCap": 18420000000,
"totalVolume24h": 890000000,
"overallTrend": 1.24,
"activeTickersCount": 7,
"lastUpdate": "2026-06-16T13:12:00Z"
}
Response Fields
| Field | Type | Description |
|---|---|---|
| totalMarketCap | number | Aggregated market cap of all tracked tokens (USD) |
| totalVolume24h | number | Total 24h trading volume (USD) |
| overallTrend | number | Average 24h % change across all tokens |
| activeTickersCount | number | Number of actively tracked tokens |
| lastUpdate | string | ISO 8601 time of last data refresh |
Frequently Asked Questions
What is the TokenMarket AI Sector Index?
A composite weighted score that benchmarks the aggregate health and performance of the decentralised AI compute token market, updated hourly from live CoinGecko data.
What is the Compute-to-Market Ratio (CMR)?
CMR = Sector Index ÷ OpenRouter Mock Compute Cost. It expresses how much aggregate market value exists per unit of AI compute cost, helping traders understand whether AI compute is over- or under-priced by the market.
Which tokens are included in the index?
RNDR (Render Network), TAO (Bittensor), FET (Fetch.ai), AGIX (SingularityNET), NMR (Numeraire), OCEAN (Ocean Protocol), AKT (Akash Network).
How do I access the API?
No API key required. Send a standard HTTP GET request to https://api.fundingcloud.com with the endpoint paths above.
How often is the index updated?
The Sector Index is recalculated hourly by an automated indexer service. Live prices reflect the most recent hourly run.
Is the API free to use?
Yes. The public API tier is free with no rate limits for reasonable usage. Contact us for enterprise SLA or higher-throughput plans.