Take the data
All published data is CC BY 4.0. There is no API key. There is no registration.
The archive is Git
LocalMax commits accepted manifests to the public repository every hour. There is one file for each result, in a directory for its profile, version and GPU. The archive is the record. The live database is an index built from it.
git clone https://github.com/pavel4ai/localmax.net.git ls localmax.net/results/llm-entry-fp8/0.1.0/rtx-4090/
Each file is the manifest as submitted and signed. LocalMax does not edit it later. A correction is a new result with a finding, not a change to an old one.
The read API
The read API is public. GET requests permit any origin. The base URL ishttps://api.localmax.net.
| Endpoint | Returns |
|---|---|
| GET /v1/profiles | Every profile with its pinned rules and result counts |
| GET /v1/profiles/:id | One profile in full, including workloads and gates |
| GET /v1/leaderboard/:id | Ranked results plus per-GPU distribution for one profile |
| GET /v1/results | All accepted results, filterable and paginated |
| GET /v1/results/:runId | One result with its full manifest, findings and percentile context |
| GET /v1/distribution/:id | Every ranked headline value for one profile, optionally by GPU |
| GET /v1/hardware | GPU registry with per-GPU result counts |
| GET /v1/hardware/:key | Per-profile aggregates for one GPU |
| GET /v1/compare?ids= | Two to four results side by side |
| GET /v1/stats | Site totals and the most recent results |
| GET /v1/evidence/:hash | One evidence artifact by content hash |
# Every ranked RTX 4090 result on the Entry FP8 profile curl 'https://api.localmax.net/v1/results?profile=llm-entry-fp8&gpu=rtx-4090&ranked=1' # The distribution behind a percentile figure curl 'https://api.localmax.net/v1/distribution/llm-entry-fp8?gpu=rtx-4090'
Schemas
The schemas are the contract for the whole project. The runner, the API and CI all validate against these files.
- result.schema.json — one benchmark run
- profile.schema.json — an immutable benchmark definition
- api.schema.json — submission and read contracts
- common.schema.json — shared definitions
Attribution and caveats
Cite as: Data from LocalMax (localmax.net), CC BY 4.0.
The public contributes these results. A verification state describes the evidence, not the honesty of the operator. For the strictest set, filter onverification=verified and ranked=1. Treat one result as one sample, not as a specification.