New-All-Endpoint
Endpoint to Fetch all results links (Supplementary and Regular).
GET /calculate/hallticket/dob/year
Usage
- Go here:
https://results-restapi.up.railway.app/new/all
1
Example
Copy and paste this url in a new tab:
https://results-restapi.up.railway.app/new/all
1
You would obtain a sample response as such:
{
"total-exam-result-releases": 334,
"total-regular-exam-result-releases": 49,
"total-supply-exam-result-releases": 286,
"regular": [
{
"exam_name": "B.Tech I Year II Semester (R18) Regular Examinations Results",
"release_date": "16-DEC-2021",
"links": [
"http://results.jntuh.ac.in/jsp/SearchResult.jsp?degree=btech&examCode=1503&etype=r17&type=intgrade",
"http://202.63.105.184/results/jsp/SearchResult.jsp?degree=btech&examCode=1503&etype=r17&type=intgrade"
],
"degree": "btech",
"examCode": "1503",
"etype": "r17",
"type": "intgrade",
"id": 0
},
{
"exam_name": "B.Tech III Year II Semester (R18) Regular Examinations Results",
"release_date": "09-DEC-2021",
"links": [
"http://results.jntuh.ac.in/jsp/SearchResult.jsp?degree=btech&examCode=1502&etype=r17&type=intgrade",
"http://202.63.105.184/results/jsp/SearchResult.jsp?degree=btech&examCode=1502&etype=r17&type=intgrade"
],
"degree": "btech",
"examCode": "1502",
"etype": "r17",
"type": "intgrade",
"id": 1
}
]...
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33