curl --request GET \
--url https://api.learningcommons.org/knowledge-graph/v0/academic-standards/{caseIdentifierUUID}/activities \
--header 'x-api-key: <api-key>'{
"data": [
{
"identifier": "im:98928b4e-0183-5e0e-955d-230653db7332",
"name": "Water in a Tank",
"ordinalName": "Activity 1",
"author": "Illustrative Mathematics",
"provider": "Learning Commons",
"license": "https://creativecommons.org/licenses/by-nc/4.0/",
"attributionStatement": "Knowledge Graph is provided by Learning Commons under the CC BY-4.0 license. Learning Commons received the scope and sequence of the Illustrative Mathematics 360 curriculum under CC BY-4.0 from Illustrative Mathematics."
},
{
"identifier": "im:a859c7f9-ba5c-5b2e-82e9-1b948e4ee01c",
"name": "Swing Time",
"ordinalName": "Activity 2",
"author": "Illustrative Mathematics",
"provider": "Learning Commons",
"license": "https://creativecommons.org/licenses/by-nc/4.0/",
"attributionStatement": "nKnowledge Graph is provided by Learning Commons under the CC BY-4.0 license. Learning Commons received the scope and sequence of the Illustrative Mathematics 360 curriculum under CC BY-4.0 from Illustrative Mathematics.l"
}
],
"pagination": {
"limit": 100,
"nextCursor": null,
"hasMore": false
}
}Fetches summary information for all activities that address a specific academic standard.
Returns activity summaries (identifier, name, position) that are aligned to this standard, indicating which specific instructional tasks help students achieve this learning expectation.
Use this endpoint when you need to:
curl --request GET \
--url https://api.learningcommons.org/knowledge-graph/v0/academic-standards/{caseIdentifierUUID}/activities \
--header 'x-api-key: <api-key>'{
"data": [
{
"identifier": "im:98928b4e-0183-5e0e-955d-230653db7332",
"name": "Water in a Tank",
"ordinalName": "Activity 1",
"author": "Illustrative Mathematics",
"provider": "Learning Commons",
"license": "https://creativecommons.org/licenses/by-nc/4.0/",
"attributionStatement": "Knowledge Graph is provided by Learning Commons under the CC BY-4.0 license. Learning Commons received the scope and sequence of the Illustrative Mathematics 360 curriculum under CC BY-4.0 from Illustrative Mathematics."
},
{
"identifier": "im:a859c7f9-ba5c-5b2e-82e9-1b948e4ee01c",
"name": "Swing Time",
"ordinalName": "Activity 2",
"author": "Illustrative Mathematics",
"provider": "Learning Commons",
"license": "https://creativecommons.org/licenses/by-nc/4.0/",
"attributionStatement": "nKnowledge Graph is provided by Learning Commons under the CC BY-4.0 license. Learning Commons received the scope and sequence of the Illustrative Mathematics 360 curriculum under CC BY-4.0 from Illustrative Mathematics.l"
}
],
"pagination": {
"limit": 100,
"nextCursor": null,
"hasMore": false
}
}API key for authentication. Include your API key in the x-api-key header for all requests.
The CASE UUID identifier from the CASE Network published by 1EdTech
Maximum number of results to return. Default is 100. Maximum allowed is 1000.
1 <= x <= 1000Cursor for pagination. Obtain this value from the 'nextCursor' field in the previous response. Omit for the first page.
Was this page helpful?