Verifiable DePIN Intelligence · REST API v1

DePIN Intelligence, verifiable by design.

Kairos Signal is a REST API for supply, revenue, market and first-party network telemetry across 740 cataloged DePIN networks — 263 with live data, 171 with first-party supply feeds. Every value carries its source, a timestamp, and a verify_url you can check yourself. Each daily batch is Merkle-rooted and anchored to Bitcoin via OpenTimestamps.

745+
Networks cataloged
263
With live data
171
First-party supply feeds
100%
Values carry verify_url

#Quick Start

From zero to your first query in under 60 seconds. No credit card required.

1

Register

Create an account and get $5 in free credits instantly — no card required. Get your free key →

2

Get your API key

Your key is returned immediately in the registration response. Send it in the X-API-Key header on every request.

3

Query the API

Call any endpoint below. Each response includes verify_url links so you can confirm every value at the source.

#Authentication

All endpoints except /try and /v1/credits/register require an API key. Send it in the X-API-Key header.

GET /v1/networks Authenticated request example
cURL
curl -H "X-API-Key: ks_live_9f2c4a7e1b8d3f6a" \
  https://kairossignal.com/v1/networks
No key needed for: GET /try (free sample) and POST /v1/credits/register (signup). Every other endpoint is metered per call and billed from your credit balance.

#Endpoints

Every endpoint returns JSON. All data values include a verify_url pointing to the upstream source, an as_of timestamp, and provenance disclosure.

POST /v1/credits/register Create an account — get a free API key + $5 credits FREE
cURL
curl -X POST https://kairossignal.com/v1/credits/register \
  -H "Content-Type: application/json" \
  -d '{"email": "[email protected]", "agent_name": "my-agent"}'
Response 200
{
  "api_key": "ks_live_9f2c4a7e1b8d3f6a",
  "credits_balance": 5.00,
  "message": "Welcome! $5 in free credits added. Your key is active."
}
GET /try Free sample — 3 showcase networks, no key required FREE
cURL
curl https://kairossignal.com/try
Response 200
{
  "networks": [
    {
      "symbol": "AKT",
      "name": "Akash Network",
      "category": "Compute",
      "telemetry_tier": "first_party",
      "live_series": 41,
      "verify_url": "https://akash.network/network"
    },
    {
      "symbol": "FIL",
      "name": "Filecoin",
      "category": "Storage",
      "telemetry_tier": "first_party",
      "live_series": 38,
      "verify_url": "https://filecoin.io"
    },
    {
      "symbol": "WXM",
      "name": "WeatherXM",
      "category": "Weather",
      "telemetry_tier": "first_party",
      "live_series": 27,
      "verify_url": "https://weatherxm.com"
    }
  ]
}
GET /v1/networks List all 740 networks in the catalog $0.005
cURL
curl -H "X-API-Key: ks_live_9f2c4a7e1b8d3f6a" \
  https://kairossignal.com/v1/networks
Response 200
[
  {
    "symbol": "AKT",
    "name": "Akash Network",
    "category": "Compute",
    "telemetry_tier": "first_party",
    "live_series": 41
  },
  {
    "symbol": "FIL",
    "name": "Filecoin",
    "category": "Storage",
    "telemetry_tier": "first_party",
    "live_series": 38
  }
]
GET /v1/network/{symbol} All metrics for one network, with provenance $0.005
cURL
curl -H "X-API-Key: ks_live_9f2c4a7e1b8d3f6a" \
  https://kairossignal.com/v1/network/AKT
Response 200
[
  {
    "symbol": "AKT",
    "metric": "registered_gpu_count",
    "value": 12480,
    "unit": "count",
    "source": "Akash Network API",
    "verify_url": "https://akash.network/network",
    "as_of": "2026-08-17T00:00:00Z"
  },
  {
    "symbol": "AKT",
    "metric": "active_leases",
    "value": 312,
    "unit": "count",
    "source": "Akash Network API",
    "verify_url": "https://akash.network/network",
    "as_of": "2026-08-17T00:00:00Z"
  }
]
GET /v1/supply First-party supply telemetry across 171 networks $0.02
cURL
curl -H "X-API-Key: ks_live_9f2c4a7e1b8d3f6a" \
  https://kairossignal.com/v1/supply
Response 200
[
  {
    "symbol": "IO",
    "metric": "registered_gpu_count",
    "value": 18640,
    "unit": "count",
    "source": "io.net API",
    "verify_url": "https://io.net",
    "as_of": "2026-08-17T00:00:00Z"
  },
  {
    "symbol": "FIL",
    "metric": "active_storage_providers",
    "value": 2140,
    "unit": "count",
    "source": "Filecoin API",
    "verify_url": "https://filecoin.io",
    "as_of": "2026-08-17T00:00:00Z"
  }
]
GET /v1/market Price, market cap and FDV across 256 networks $0.02
cURL
curl -H "X-API-Key: ks_live_9f2c4a7e1b8d3f6a" \
  https://kairossignal.com/v1/market
Response 200
[
  {
    "symbol": "AKT",
    "price_usd": 3.42,
    "market_cap_usd": 812000000,
    "fully_diluted_valuation_usd": 3420000000,
    "verify_url": "https://coingecko.com/en/coins/akash-network"
  },
  {
    "symbol": "FIL",
    "price_usd": 4.18,
    "market_cap_usd": 2450000000,
    "fully_diluted_valuation_usd": 8200000000,
    "verify_url": "https://coingecko.com/en/coins/filecoin"
  }
]
GET /v1/revenue Protocol fees and TVL across 92 networks $0.02
cURL
curl -H "X-API-Key: ks_live_9f2c4a7e1b8d3f6a" \
  https://kairossignal.com/v1/revenue
Response 200
[
  {
    "symbol": "AKT",
    "fees_24h_usd": 18420,
    "fees_7d_usd": 128940,
    "fees_30d_usd": 512300,
    "tvl_usd": 18400000,
    "verify_url": "https://defillama.com/protocol/akash-network"
  },
  {
    "symbol": "FIL",
    "fees_24h_usd": 31200,
    "fees_7d_usd": 218400,
    "fees_30d_usd": 936000,
    "tvl_usd": 42000000,
    "verify_url": "https://defillama.com/protocol/filecoin"
  }
]
GET /v1/provenance Provenance disclosure for every value in the API $0.005
cURL
curl -H "X-API-Key: ks_live_9f2c4a7e1b8d3f6a" \
  https://kairossignal.com/v1/provenance
Response 200
[
  {
    "metric": "registered_gpu_count",
    "source": "io.net API",
    "verify_url": "https://io.net",
    "as_of": "2026-08-17T00:00:00Z",
    "staleness_flag": false
  },
  {
    "metric": "active_storage_providers",
    "source": "Filecoin API",
    "verify_url": "https://filecoin.io",
    "as_of": "2026-08-17T00:00:00Z",
    "staleness_flag": false
  }
]

#Pricing

Pay-as-you-go credits from $0.005 per call. Start free with $5 in credits — no card required. Top up instantly via Stripe.

Starter

Free Credits

$5 free
One-time · no card required
  • 1,000+ calls on light endpoints
  • Full access to all endpoints
  • verify_url on every value
  • No expiration
Get Free $5
Pay-as-you-go

$20 Credits

$20 USD
~4,000 calls on light endpoints
  • All endpoints, all networks
  • Bulk supply, market & revenue pulls
  • Provenance disclosure included
  • Credits never expire
Buy $20 Credits
Pro

$99 Credits

$99 USD
~20,000 calls on light endpoints
  • Everything in $20, plus:
  • Best per-call economics
  • Priority support
  • Ideal for production agents
Buy $99 Credits
Design Partner

$199 / month

For teams building on DePIN data. Dedicated support, early access to new endpoints, custom data pipelines, and a direct line to the Kairos Signal team.

Become a Design Partner
Per-call pricing: GET /v1/networks $0.005 · GET /v1/network/{symbol} $0.005 · GET /v1/provenance $0.005 · GET /v1/supply $0.02 · GET /v1/market $0.02 · GET /v1/revenue $0.02. GET /try and POST /v1/credits/register are always free.

#Resources

OpenAPI Spec

Machine-readable specification of every endpoint, schema and response. Import into Postman, Insomnia or your codegen tool.

View /openapi.json →

Free $5 Credits

Register once and get $5 in free credits plus your API key — no credit card required, no expiration.

Claim free credits →

Full Documentation

Deep dives on data coverage, verification, Bitcoin anchoring and integration guides for AI agents and MCP.

Read the docs →