These three endpoints expose public, read-only statistics about the Darkbloom network. No authentication is required. They power the network dashboard on darkbloom.dev and are suitable for building external monitoring tools or status pages.Documentation Index
Fetch the complete documentation index at: https://docs.darkbloom.dev/llms.txt
Use this file to discover all available pages before exploring further.
GET /v1/stats
Returns aggregate platform statistics for all currently connected providers, including hardware totals, token counts, and a 30-minute time series. Cached for 60 seconds.Response
Cumulative number of inference requests served across the network lifetime.
Cumulative input tokens consumed across all requests.
Cumulative output tokens generated across all requests.
Sum of prompt and completion tokens.
Average token count per request.
Number of providers currently connected.
Total GPU cores across all connected providers.
Total CPU cores across all connected providers.
Total unified memory in GB across all connected providers.
Total memory bandwidth in GB/s across all connected providers.
Array of per-provider hardware and stats snapshots.
Aggregated per-model provider counts.
Per-minute request and token counts for the last 30 minutes.
GET /v1/leaderboard
Returns the top providers ranked by earnings, tokens generated, or jobs completed. Provider identities are pseudonymized — raw account IDs are never exposed. Cached for 5 minutes.Query parameters
The ranking metric. One of
"earnings", "tokens", or "jobs".The time window for rankings. One of
"24h", "7d", "30d", or "all".Maximum number of entries to return. Between 1 and 200.
Response
The metric used for ranking.
The time window used.
Ranked list of providers.
ISO 8601 timestamp of when this response was generated.
GET /v1/network/totals
Returns aggregate network metrics (earnings, tokens, jobs, active accounts) for a given time window. Cached for 1 minute.Query parameters
The time window. One of
"24h", "7d", "30d", or "all".Response
The time window used.
Total provider earnings in micro-USD for the window.
Total tokens generated for the window.
Total inference jobs completed for the window.
Number of distinct accounts active in the window.
ISO 8601 timestamp of when this response was generated.