Codeforces GYM Contests
Request
Make a GET request to /api/codeforces-gym
(opens in a new tab) or /api/8
(opens in a new tab) to get a list of all upcoming Codeforces GYM contests.
Response
{
"ok": true,
"data": [
{
"title": "Example Contest of Codeforces 1",
"url": "https://codeforces.com/contests/example-contest",
"startTime": "2023-12-16T09:42:01Z",
"endTime": "2023-12-16T10:42:01Z",
"duration": 3600,
"platform": "Codeforces"
},
{
"title": "Example Contest of Codeforces 2",
"url": "https://codeforces.com/contests/example-contest",
"startTime": "2023-12-16T09:42:01Z",
"endTime": "2023-12-16T11:42:01Z",
"duration": 7200,
"platform": "Codeforces"
}
],
"lastUpdated": "2023-12-16T09:42:01Z"
}
Response Details
Property | Type | Description |
---|---|---|
ok | bool | Whether the request was successful - true or false |
data | array | Data returned from the API (list of contests) |
title | string | Title of the contest |
url | string | Url of the contest |
startTime | string | Start time of the contest in UTC ISO 8601 format |
endTime | string | End time of the contest in UTC ISO 8601 format |
duration | int | Duration of the contest in seconds |
lastUpdated | string | Last time the data was updated |