Skip to content
GET /v1/hiscore

Player skills & activity scores

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/osrs-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/osrs-api/v1/hiscore" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/osrs-api/v1/hiscore", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/osrs-api/v1/hiscore");
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/osrs-api/v1/hiscore",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

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

{
    "data": {
        "player": "zezima",
        "skills": [
            {
                "id": 0,
                "xp": 27957906,
                "name": "Overall",
                "rank": 1583674,
                "level": 1466
            },
            {
                "id": 1,
                "xp": 1343681,
                "name": "Attack",
                "rank": 1567248,
                "level": 76
            },
            {
                "id": 2,
                "xp": 1342072,
                "name": "Defence",
                "rank": 1430417,
                "level": 76
            },
            {
                "id": 3,
                "xp": 1271864,
                "name": "Strength",
                "rank": null,
                "level": 75
            },
            {
                "id": 4,
                "xp": null,
                "name": "Hitpoints",
                "rank": null,
                "level": 1
            },
            {
                "id": 5,
                "xp": null,
                "name": "Ranged",
                "rank": null,
                "level": 1
            },
            {
                "id": 6,
                "xp": null,
                "name": "Prayer",
                "rank": null,
                "level": 1
            },
            {
                "id": 7,
                "xp": null,
                "name": "Magic",
                "rank": null,
                "level": 1
            },
            {
                "id": 8,
                "xp": 1986131,
                "name": "Cooking",
                "rank": 1055672,
                "level": 80
            },
            {
                "id": 9,
                "xp": 1660787,
                "name": "Woodcutting",
                "rank": 960361,
                "level": 78
            },
            {
                "id": 10,
                "xp": 1112782,
                "name": "Fletching",
                "rank": 1136598,
                "level": 74
            },
            {
                "id": 11,
                "xp": 1623137,
                "name": "Fishing",
                "rank": 908903,
                "level": 77
            },
            {
                "id": 12,
                "xp": 13034646,
                "name": "Firemaking",
                "rank": 415012,
                "level": 99
            },
            {
                "id": 13,
                "xp": null,
                "name": "Crafting",
                "rank": null,
                "level": 1
            },
            {
                "id": 14,
                "xp": 183058,
                "name": "Smithing",
                "rank": 1938505,
                "level": 55
            },
            {
                "id": 15,
                "xp": 394517,
                "name": "Mining",
                "rank": 1908961,
                "level": 63
            },
            {
                "id": 16,
                "xp": 124
…