Skip to content
GET /v1/leaderboard

Leaderboard for game + category

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/speedrun-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/speedrun-api/v1/leaderboard" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/speedrun-api/v1/leaderboard", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/speedrun-api/v1/leaderboard");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/speedrun-api/v1/leaderboard",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "game": "o1y9wo6q",
        "count": 10,
        "category": "wkpoo02r",
        "leaderboard": [
            {
                "date": "2026-04-26",
                "rank": 1,
                "time": "1h 35m 14s",
                "video": "https://www.youtube.com/watch?v=KboxS9NNFJMhttps://youtu.be/KboxS9NNFJM",
                "players": [
                    "Suigi"
                ],
                "time_seconds": 5714
            },
            {
                "date": "2025-08-11",
                "rank": 2,
                "time": "1h 35m 30s",
                "video": "https://www.youtube.com/watch?v=sjKi6aruFVs?t=1",
                "players": [
                    "Karin"
                ],
                "time_seconds": 5730
            },
            {
                "date": "2025-03-19",
                "rank": 2,
                "time": "1h 35m 30s",
                "video": null,
                "players": [
                    "anonymous "
                ],
                "time_seconds": 5730
            },
            {
                "date": "2026-03-15",
                "rank": 4,
                "time": "1h 35m 55s",
                "video": "https://youtu.be/lpzLPLvCK94",
                "players": [
                    "Parsee02"
                ],
                "time_seconds": 5755
            },
            {
                "date": "2026-05-19",
                "rank": 4,
                "time": "1h 35m 55s",
                "video": "https://www.youtube.com/watch?v=e56Dqt2sZn4",
                "players": [
                    "cheese"
                ],
                "time_seconds": 5755
            },
            {
                "date": "2024-07-06",
                "rank": 6,
                "time": "1h 36m 2s",
                "video": "https://www.youtube.com/watch?v=CJzTDktmx-Q",
                "players": [
                    "Weegee"
                ],
                "time_seconds": 5762
            },
            {
                "date": "2026-03-01",
                "rank": 7,
                "time": "1h 36m 9s",
                "video": "https://www.youtube.com/watch?v=icY6NFngDmA",
                "players": [
                    "Smau"
                ],
                "time_seconds": 5769
            },
            {
                "date": "2025-05-01",
                "rank": 8,
                "time": "1h 36m 33s",
                "video": "https://youtu.be/9-b4e-TAwtQ",
                "players": [
                    "Kally"
                ],
                "time_seconds": 5793
            },
            {
                "date": "2025-06-16",
                "rank": 9,
                "time": "1h 36m 47s",
                "video": "https://www.twitch.tv/videos/2500391723",
                "players": [
                    "marlene"
                ],
                "time_seconds": 5807
            },
            {
                "date": "2024-09-26",
       
…