-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrequest_response.txt
43 lines (39 loc) · 954 Bytes
/
request_response.txt
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
req - http://localhost:3000/federalExpenses/ArizoNA
resp:
{
"state": "ArizoNA",
"federalExpenses": {
"AmericanIndianEducation": "10,235 ",
"AssistanceInFederallyAffectedAreas": "149,281 ",
"BlockGrantForSchoolImprovement": "75,805 ",
"EnglishLanguageAcquisition": "14,128 ",
"GrantsForDisadvantaged": "342,030 ",
"RehabilitationServices": "65,364 ",
"SpecialEducation": "203,193 ",
"StudentFinancialAssistance": "1,312,501 "
}
}
req - http://localhost:3000/crimeData/tempe/arizona
res:
{
"crimeData": {
"population": "164,008",
"Aggravated_Assault": "500",
"Arson": "28",
"Burglary": "1,579",
"Larceny_Theft": "6,804",
"Motor_vehicle_theft": "550",
"Murder": "5",
"Rape": "45",
"Robbery": "237"
}
}
req - http://localhost:3000/educationData/arizona
res:
{
"educationData": {
"HighSchoolDiplomaOnlyPercentage": "24.4",
"BachelorDegreeOrHigherPercentage": "27.5",
"LessThanHighSchoolPercentage": "14"
}
}