HackerRank Contests
Request
Make a GET request to /api/hackerrank
(opens in a new tab) or /api/5
(opens in a new tab) to get a list of all upcoming HackerRank contests.
Response
{
"ok": true,
"data": [
{
"title": "Example Contest of HackerRank 1",
"url": "https://www.hackerrank.com/contests/example-contest",
"startTime": "2023-12-16T09:42:13Z",
"endTime": "2023-12-16T10:42:13Z",
"duration": 3600,
"platform": "HackerRank"
},
{
"title": "Example Contest of HackerRank 2",
"url": "https://www.hackerrank.com/contests/example-contest",
"startTime": "2023-12-16T09:42:13Z",
"endTime": "2023-12-16T11:42:13Z",
"duration": 7200,
"platform": "HackerRank"
}
],
"lastUpdated": "2023-12-16T09:42:13Z"
}
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 |