Back to list

grade/

A list of all of the possible grades.

Extra Parameters:

Parameter none
Example https://api.agclassroom.org/api/grade/

HTTP Method

GET

Requires authentication:

No

Return Format:

JSON

Return Example:

{

success:true

message:Found 13 grades.

resultcount:13

result: [...]

0 {...}

id:1

abbreviation:K

description:Kindergarden

bandEarly Elementary

bandabbreviation:EE

1 {...}

id:2

abbreviation:1

description:First grade

bandEarly Elementary

bandabbreviation:EE

2 {...}

. . .

}

Back to list

grade/band/

A list of grade bands, and grades within each band.

Extra Parameters:

Parameter none
Example https://api.agclassroom.org/api/grade/band/

HTTP Method

GET

Requires authentication:

No

Return Format:

JSON

Return Example:

{

success:true

message:Found bands and grades.

resultcount:13

result: [...]

0 {...}

band:Early Elementary

bandabbreviation:EE

banddescription:K-2

gradeslist:K,1,2

grades: [...]

0 {...}

id:1

abbreviation:K

description:Kindergarden

1 {...}

id:2

abbreviation:1

description:First grade

2 {..}

id:3

abbreviation:2

description:Second grade

1: {...}

. . .

}

Back to list

grade/id/{id}/

One specific grade.

Extra Parameters:

Parameter id
Type number
Description This identifier must be known previously or be pulled from the grade call.
Example https://api.agclassroom.org/api/grade/id/2/

HTTP Method

GET

Requires authentication:

No

Return Format:

JSON

Return Example:

{

success:true

message:Found 1 grade.

resultcount:1

result: [...]

0 {...}

id:2

abbreviation:1

description:First grade

band:Early Elementary

bandabbreviation:EE

}