# SweData DePIN Compute Sector Market Intelligence

> SweData DePIN Compute Sector Market Intelligence is a paid API for AI agents from api.swedata.org, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-15).

Returns real-time crypto market data for compute and AI/DePIN sector tokens (e.g. Render, io.net, Bittensor, Akash), with prices, market caps, 24h/7d changes, and top movers, filterable by subcategory.

## Facts

- Endpoint: POST https://api.swedata.org/depin/compute
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/swedata-depin-compute-sector-market-intelligence-29a00286
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap___BffkUrVZde8XeBuEPPy

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 swedata-depin-compute-sector-market-intelligence-29a00286 -d '<json body>'
```

Example prompt: What are the current prices and 24-hour changes for all GPU compute crypto tokens like Render, io.net, Aethir, and Nosana — and which one is the top gainer today?

## When to prefer this

Use this endpoint when you need curated, sector-scoped crypto market data specifically for DePIN and decentralized compute/AI tokens (Render, io.net, Bittensor, Akash, Aethir, Nosana) rather than querying a general-purpose exchange API. Ideal for agents building crypto dashboards, sector analysis tools, or DeFi research workflows that need filtered, ready-to-use compute sector intelligence without parsing a full market API.

## Known failure modes

- Invalid category value returns an error or empty token list
- Payment not processed (x402 protocol failure) results in 402 response
- Upstream market data source unavailable causes stale or missing prices
- Network timeout on the provider API side
- Empty response if no tokens match the requested subcategory

## How this service works

Swedish open data and crypto/DePIN market intelligence for AI agents – weather (SMHI), jobs (Arbetsförmedlingen), and curated compute/AI-DePIN sector data

## Output

Returns a JSON object with an array of compute/AI-DePIN sector tokens (up to 8), each with symbol, price in USD, 24h and 7d percentage changes, market cap, and 24h volume. Also includes aggregate stats: total sector market cap, total 24h volume, top gainer and top loser by 24h performance, token count, data source, and a timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "category": {
   "enum": [
    "all",
    "gpu",
    "ai",
    "cloud"
   ],
   "type": "string",
   "description": "Filter tokens by subcategory: all = all 8 tokens, gpu = GPU-based compute (Render/io.net/Aethir/Nosana), ai = AI/ML networks (Bittensor), cloud = cloud compute (Akash/Aethir)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "paid": {
   "type": "boolean"
  },
  "sector": {
   "type": "string"
  },
  "source": {
   "type": "string"
  },
  "tokens": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "id": {
      "type": "string"
     },
     "name": {
      "type": "string"
     },
     "rank": {
      "type": [
       "integer",
       "null"
      ]
     },
     "symbol": {
      "type": "string"
     },
     "price_usd": {
      "type": "number"
     },
     "subcategory": {
      "type": "string"
     },
     "change_7d_pct": {
      "type": [
       "number",
       "null"
      ]
     },
     "change_24h_pct": {
      "type": [
       "number",
       "null"
      ]
     },
     "market_cap_usd": {
      "type": "number"
     },
     "volume_24h_usd": {
      "type": "number"
     }
    }
   }
  },
  "timestamp": {
   "type": "string",
   "format": "date-time"
  },
  "tokens_count": {
   "type": "integer"
  },
  "top_loser_24h": {
   "type": "string"
  },
  "top_gainer_24h": {
   "type": "string"
  },
  "total_market_cap_usd": {
   "type": "number"
  },
  "total_volume_24h_usd": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/swedata-depin-compute-sector-market-intelligence-29a00286/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.swedata.org](https://www.zero.xyz/host/api.swedata.org/llms.txt)
