
🇺🇸 English

🇺🇸 English
- Competition
- Users
- Problem
- SubmitRecords
- Discussion
- Administrator
- Competition
- Problem
- Users
- Get IP StatisticsGET
- LoginGET
- Get rankingGET
- Get captchaGET
- Verify user infoGET
- SSE Notice ServiceGET
- RegisterPOST
Get list of competition
GET
http://127.0.0.1:37881/api/v1/admin/competitions
Last modified:2025-01-13 17:08:51
Request
Header Params
username
string
required
Authorization
string
required
Responses
🟢200OK
application/json
Body
contests
array [object {9}]
required
contest_id
integer
required
title
string
required
subtitle
string
required
difficulty
string
required
password
string
required
have_password
boolean
required
is_visible
boolean
required
start_at
string
required
end_at
string
required
Example
{
"contests": [
{
"contest_id": 1,
"title": "第一次练习",
"subtitle": "22计算机3班",
"difficulty": "简单",
"password": "123456",
"have_password": true,
"is_visible": true,
"start_at": "2024-08-19T00:00:00+08:00",
"end_at": "2024-09-19T00:00:00+08:00"
},
{
"contest_id": 2,
"title": "测试",
"subtitle": "临时97",
"difficulty": "简单",
"password": "",
"have_password": false,
"is_visible": true,
"start_at": "2024-09-20T00:00:00+08:00",
"end_at": "2024-10-20T00:00:00+08:00"
},
{
"contest_id": 3,
"title": "测",
"subtitle": "92",
"difficulty": "困难",
"password": "123",
"have_password": true,
"is_visible": true,
"start_at": "2024-08-19T00:00:00+08:00",
"end_at": "2024-08-20T00:00:00+08:00"
},
{
"contest_id": 4,
"title": "测2",
"subtitle": "123",
"difficulty": "中等",
"password": "",
"have_password": false,
"is_visible": true,
"start_at": "2024-11-11T00:00:00+08:00",
"end_at": "2024-12-11T00:00:00+08:00"
},
{
"contest_id": 5,
"title": "第二次Java练习",
"subtitle": "22级人工智能2班",
"difficulty": "困难",
"password": "245",
"have_password": true,
"is_visible": true,
"start_at": "2024-09-23T00:00:00+08:00",
"end_at": "2024-09-24T00:00:00+08:00"
}
]
}