New-Endpoint
Endpoint to fetch all results links in unordered fashion
GET /new/
Usage
- Go here:
https://results-restapi.up.railway.app/new/
1
Example
Copy and paste this url in a new tab:
https://results-restapi.up.railway.app/new/
1
You would obtain a sample response as such:
[
{
"exam_name": " RC/RV B.Tech II Year I Semester (R18) Supplementary Examinations Results",
"release_date": "07-JAN-2022",
"links": [
"http://results.jntuh.ac.in/jsp/SearchResult.jsp?degree=btech&examCode=1496&etype=r17&result=gradercrv&type=rcrvintgrade",
"http://202.63.105.184/results/jsp/SearchResult.jsp?degree=btech&examCode=1496&etype=r17&result=gradercrv&type=rcrvintgrade"
],
"degree": "btech",
"examCode": "1496",
"etype": "r17",
"result": "gradercrv",
"type": "rcrvintgrade",
"id": 0
},
{
"exam_name": " RC/RV B.Tech II Year I Semester (R16) Supplementary Examinations Results",
"release_date": "07-JAN-2022",
"links": [
"http://results.jntuh.ac.in/jsp/SearchResult.jsp?degree=btech&examCode=1497&etype=r17&result=gradercrv&type=rcrvintgrade",
"http://202.63.105.184/results/jsp/SearchResult.jsp?degree=btech&examCode=1497&etype=r17&result=gradercrv&type=rcrvintgrade"
],
"degree": "btech",
"examCode": "1497",
"etype": "r17",
"result": "gradercrv",
"type": "rcrvintgrade",
"id": 1
},
{
"exam_name": " RC/RV B.Tech II Year I Semester (R15) Supplementary Examinations Results",
"release_date": "07-JAN-2022",
"links": [
"http://results.jntuh.ac.in/jsp/SearchResult.jsp?degree=btech&examCode=1498&etype=rcrv",
"http://202.63.105.184/results/jsp/SearchResult.jsp?degree=btech&examCode=1498&etype=rcrv"
],
"degree": "btech",
"examCode": "1498",
"etype": "rcrv",
"id": 2
}
]
...
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
34
35
36
37
38
39
40
41
42
43
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
34
35
36
37
38
39
40
41
42
43