Aller au contenu
GET /v1/solved

Problem-solving record — problems accepted and difficulty cleared

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/atcoder-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}