- This API requires authorized users only.
- This API allows multiple ratings and feedback from users.
- URL:
/api/rating/
- Method:
POST
- Headers:
Authorization: Bearer <jwt_token>
- Body:
feedback
(string): The feedback provided by the user.rating
(int): The rating value given by the user.
{
"id": 1,
"user": "prasad",
"rating": 5,
"feedBack": "Great"
}
- URL:
/api/ratings/
- Method:
GET
- Headers:
Authorization: Bearer <jwt_token>
- Body:
[
{
"id": 1,
"user": "prasad",
"rating": 5,
"feedBack": "Great"
},
{
"id": 2,
"user": "testuser1",
"rating": 5,
"feedBack": "Hello"
}
]
- This API requires authorized users only.
- This API responsible to retrieve and list questions based on categories (junior,senior,both).
- URL:
/api/questions/
- Method:
GET
- Headers:
Authorization: Bearer <jwt_token>
- Body:
[
{
"questionId": "2611d",
"solvedByTeam": false,
"questionNumber": 1,
"title": "Reverse String",
"description": "Hello World",
"ipFormate": "Hello World",
"opFormate": "Hello World",
"constraints": "Hello World",
"sampleIp": "Hello World",
"sampleOp": "Hello World",
"difficultyLevel": 0,
"maxPoints": 0,
"points": 0,
"timeLimit": 1,
"memoryLimit": 524288,
"accuracy": 0,
"totalSubmissions": 0,
"author": "pandeji",
"category": "junior"
},
{
"questionId": "6c806",
"solvedByTeam": false,
"questionNumber": 2,
"title": "Question 3",
"description": "Hello World",
"ipFormate": "Hello World",
"opFormate": "Hello World",
"constraints": "Hello World",
"sampleIp": "Hello World",
"sampleOp": "Hello World",
"difficultyLevel": 0,
"maxPoints": 0,
"points": 0,
"timeLimit": 1,
"memoryLimit": 524288,
"accuracy": 0,
"totalSubmissions": 0,
"author": "pandeji",
"category": "both"
}
]
- URL:
/api/questions/{id}/
- Method:
GET
- Headers:
- Authorization:
Bearer <jwt_token>
- Authorization:
- Example Request:
/api/questions/2611d/
- Example Response
{
"questionId": "2611d",
"solvedByTeam": false,
"questionNumber": 1,
"title": "Reverse String",
"description": "Hello World",
"ipFormate": "Hello World",
"opFormate": "Hello World",
"constraints": "Hello World",
"sampleIp": "Hello World",
"sampleOp": "Hello World",
"difficultyLevel": 0,
"maxPoints": 0,
"points": 0,
"timeLimit": 1,
"memoryLimit": 524288,
"accuracy": 0,
"totalSubmissions": 0,
"author": "pandeji",
"category": "junior"
}
- This API provides access to the leaderboard rankings for junior and senior users. It also includes personal rank if a token is provided.
- URL:
/api/leaderboard/
- Method:
GET
- Headers:
Authorization: Bearer <jwt_token>
(optional)
{
"personalRank": {
"teamId": "919da",
"user1": "testuser1",
"user2": "prasad",
"score": 0,
"lastUpdate": "2023-07-07T21:39:30+05:30",
"questionSolvedByUser": {
"Q1": 0,
"Q2": 0,
"Q3": 0
},
"rank": 1
},
"juniorLeaderboard": [
{
"teamId": "919da",
"user1": "testuser1",
"user2": "prasad",
"score": 0,
"lastUpdate": "2023-07-07T21:39:30+05:30",
"questionSolvedByUser": {
"Q1": 0,
"Q2": 0,
"Q3": 0
},
"rank": 1
},
],
"seniorLeaderboard": [
{
"teamId": "ddc43",
"user1": "testuser5",
"user2": "testuser6",
"score": 0,
"lastUpdate": "2023-07-07T21:39:30+05:30",
"questionSolvedByUser": {
"Q1": 0,
"Q2": 0
},
"rank": 1
}
]
}
- This API requires authorized users only.
- This API provides submissions of user. It allows you to list all submissions or filter them based on a specific question.
- URL:
/api/submissions/
- Method:
GET
- Headers:
Authorization: Bearer <jwt_token>
- Parameters:
question
(int, optional): Filter submissions by question ID.
- Example Request:
/api/submissions/
OR/api/submissions/?question=1d0c0/
[
{
"id": 2,
"team": "919da",
"question": "1d0c0",
"language": "python",
"code": "print(\"hello\")",
"isCorrect": false,
"points": 0,
"submissionTime": "2023-07-07T22:10:16.370921+05:30",
"status": "WA"
},
{
"id": 1,
"team": "919da",
"question": "2611d",
"language": "python",
"code": "print(\"hello world\")",
"isCorrect": false,
"points": 0,
"submissionTime": "2023-07-07T22:02:56.303079+05:30",
"status": "WA"
}
]
- When question is mentioned (List of submissions will receive for that question)
[
{
"id": 6,
"team": "919da",
"question": "1d0c0",
"language": "python",
"code": "print(\"hello\")",
"isCorrect": false,
"points": 0,
"submissionTime": "2023-07-07T22:10:16.370921+05:30",
"status": "WA"
}
]
- This API requires authorized users only.
- This API allows users to submit code for a question. The submitted code will be associated with the user and the specified question.
- URL:
/api/submit/
- Method:
POST
- Headers:
Authorization: Bearer <jwt_token>
- Body:
question
(char): ID of the question for which the code is being submitted.code
(string): The code submitted by the user.language
(string): The programming language used in the submitted code.input
(string): (optional) Input value to run code.isSubmitted
(boolean): Set totrue
if the user is submitting code; set tofalse
if the user is checking existing code.
- Code Submitted (Submit btn clicked)
{
"testcase1": {
"returnCode": 0,
"status": "AC"
},
"testcase2": {
"returnCode": 0,
"status": "AC"
}
}
- Code Checking (Run btn clicked)
{
"error": "",
"output": "dasarp\n",
"returnCode": 0,
"status": "AC",
"question": "2611d",
"language": "python",
"code": "def reverse_string(input_str):\n # Reverse the string\n return input_str[::-1]\nprint(reverse_string(input()))",
"isSubmitted": false,
"input": null
}
- This API allows users to authenticate and obtain tokens by providing their username and password.
- URL:
/api/login/
- Method:
POST
- Body:
username
(string): The username of the user.password
(string): The password of the user.
{ "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNjkyMjg5MTkwLCJpYXQiOjE2OTIyNzgzOTAsImp0aSI6ImYwZjFhNjZmMzA0YTRmMzI5YTdjNzk5YjQ3ODlhY2VlIiwidXNlcl9pZCI6MX0.zdAFWXBPncVii8P_Nhejmto0lQ6YMmGSK33T2EDb8Bs", "isJunior": true }
- URL:
/api/result/
- Method:
GET
- Headers:
Authorization: Bearer <jwt_token>
(optional)
{ "personalRank": { "teamId": "919da", "user1": "testuser1", "user2": "prasad", "score": 10, "lastUpdate": "2023-08-13T19:46:24+05:30", "questionSolvedByUser": { "Q1": 0, "Q2": 10, "Q3": 0 }, "rank": 2 }, "top6": [ { "teamId": "40dee", "user1": "testuser70", "user2": "testuser17", "score": 35, "lastUpdate": "2023-07-09T23:06:16+05:30", "questionSolvedByUser": { "Q1": 0, "Q2": 0, "Q3": 0 }, "rank": 1 }, { "teamId": "919da", "user1": "testuser1", "user2": "prasad", "score": 10, "lastUpdate": "2023-08-13T19:46:24+05:30", "questionSolvedByUser": { "Q1": 0, "Q2": 10, "Q3": 0 }, "rank": 2 }, { "teamId": "7ad06", "user1": "testuser2", "user2": "testuser3", "score": 0, "lastUpdate": "2023-07-07T21:39:30+05:30", "questionSolvedByUser": { "Q1": 0, "Q2": 0, "Q3": 0 }, "rank": 3 }, { "teamId": "4e2e7", "user1": "testuser12", "user2": null, "score": 0, "lastUpdate": "2023-07-09T21:22:39.850265+05:30", "questionSolvedByUser": { "Q1": 0, "Q2": 0, "Q3": 0 }, "rank": 4 }, { "teamId": "865b4", "user1": "testuser76", "user2": null, "score": -8, "lastUpdate": "2023-07-25T17:50:29.309952+05:30", "questionSolvedByUser": { "Q1": 0, "Q2": 0, "Q3": 0 }, "rank": 5 } ] }