FORUM
📊
DATA API KEYS
Free programmatic access to live benchmark data
API DOCS →
WHAT THIS KEY IS FOR
A Data API key (asl_live_…) unlocks /api/v1/* — model rankings, the global index, degradation alerts, drift signatures and provider reliability, as JSON. It is read-only and free. It is not an SR key (aism_) — those run live inference through your connected providers and can spend money. Separate on purpose, so a leaked read key can never touch your provider accounts.
Active Keys
...
Requests Today
...
Daily Limit
...
Tier
...
🔑 YOUR DATA KEYS (...)
LOADING KEYS
⚡ QUICK START
Send the key as a bearer token. Every endpoint lives under https://aistupidlevel.info/api/v1.
curl
curl -H "Authorization: Bearer asl_live_your_key_here" \
  "https://aistupidlevel.info/api/v1/models?period=latest&sortBy=combined"
Python
import requests

r = requests.get(
    "https://aistupidlevel.info/api/v1/models",
    headers={"Authorization": "Bearer asl_live_your_key_here"},
    params={"period": "latest", "sortBy": "combined"},
)
for m in r.json()["data"][:5]:
    print(m["name"], m["currentScore"])
Node.js
const res = await fetch(
  "https://aistupidlevel.info/api/v1/models?period=latest",
  { headers: { Authorization: "Bearer asl_live_your_key_here" } }
);
const { data } = await res.json();
console.log(data.slice(0, 5));
TERMS OF USE
[1]Attribution is required — cite aistupidlevel.info wherever the data is shown.
[2]Do not republish the data as your own leaderboard or resell it.
[3]One key per application. Do not share a key across products or users.
[4]Keys can be revoked without notice if usage looks like a mirror rather than a client.