Naar de inhoud
GET /v1/solved

Problem-solving record — problems accepted and difficulty cleared

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/atcoder-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "A coder's AtCoder problem-solving record (from the AtCoder Problems dataset): solved_count is how many distinct problems they have accepted, with solved_rank their global rank by that; rated_point_sum is the total point value of the rated problems they have solved (difficulty cleared, not just quantity), with its rank. Distinct from the contest-rating view (/v1/user). A handle with no AtCoder activity returns zeros. Pass handle (required).",
        "handle": "tourist",
        "source": "AtCoder Problems API (kenkoooo.com/atcoder), keyless",
        "platform": "AtCoder",
        "solved_rank": 4265,
        "solved_count": 1055,
        "rated_point_sum": 688543,
        "rated_point_sum_rank": 624
    },
    "meta": {
        "timestamp": "2026-06-13T13:55:10.060Z",
        "request_id": "74021c5a-a1ce-4178-99b4-2cb6a3a80309"
    },
    "status": "ok",
    "message": "Solved record retrieved successfully",
    "success": true
}