/v1/solved
Problem-solving record — problems accepted and difficulty cleared
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}