Developer API Reference

Access the AI Sector Index, Compute-to-Market Ratio, live token prices, and historical data via our public REST API.

Free Public API No Auth Required Updated Hourly JSON Responses

Base URL

https://api.fundingcloud.com

Sector Index Endpoints

GET /api/tokenmarket/index/latest Sector Index

Returns the most recent Sector Index calculation including the composite index score, CMR ratio, total market cap, and per-token weight breakdown.

cURL
curl https://api.fundingcloud.com/api/tokenmarket/index/latest
JavaScript
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

FieldTypeDescription
indexValuenumberComposite sector index score (0–100+)
cmrRationumberCompute-to-Market Ratio (index ÷ compute cost)
timestampstringISO 8601 time of calculation
totalMarketCapnumberSum of tracked token market caps (USD)
totalVolume24hnumberSum of 24h trading volumes (USD)
tokensarrayPer-token breakdown with weight, price, change
GET /api/tokenmarket/index/history Sector Index

Returns historical Sector Index records in chronological order. Use the timeframe query param to control the lookback window.

Query Parameters

ParamValuesDefault
timeframe24h, 7d, 30d24h
cURL
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

GET /api/tokenmarket/live/prices Live Market

Returns live per-token prices, 24h price change, and market volume for all tracked AI compute tokens. Sorted by volume descending.

cURL
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)

FieldTypeDescription
idstringCoinGecko token identifier
symbolstringToken ticker symbol
priceUSDnumberCurrent price in USD
change24hnumber24h price change (%)
marketVolumenumber24h trading volume
GET /api/tokenmarket/live/summary Live Market

Returns a single-object aggregated market summary across all tracked tokens — total market cap, total volume, overall trend, and active ticker count.

cURL
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

FieldTypeDescription
totalMarketCapnumberAggregated market cap of all tracked tokens (USD)
totalVolume24hnumberTotal 24h trading volume (USD)
overallTrendnumberAverage 24h % change across all tokens
activeTickersCountnumberNumber of actively tracked tokens
lastUpdatestringISO 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.