[API] Agent API

Infrastructure as a queryable graph.

A REST + MCP interface for AI agents, LLMs, and procurement systems. Live capacity, latency, and efficiency data from 240+ facilities.

GET/v1/datacenters

List all indexed facilities with capacity, region, tier, and power profile.

GET/v1/clusters?gpu=H100

Query GPU clusters by model, region, availability, and price.

GET/v1/capacity/{region}

Real-time capacity intelligence for any global region.

GET/v1/latency?from={a}&to={b}

Inter-region latency benchmarks across all major providers.

GET/v1/efficiency/{facility}

Power efficiency in W/FLOP for any indexed facility.

POST/v1/route

Agent-driven routing: submit workload, receive optimal cluster match.

// example
curl https://api.datacenter.computer/v1/clusters \
  -H "Authorization: Bearer $TOKEN" \
  -G -d "gpu=H100" -d "region=eu-west" -d "min_avail=0.6"

{
  "results": 14,
  "clusters": [
    { "id": "dc-fra-04", "gpu": "H100-SXM5", "avail": 0.71, "lat_ms": 0.4 },
    ...
  ]
}