curl --request GET \
--url https://api.learningcommons.org/knowledge-graph/v0/academic-standards/{caseIdentifierUUID}/prerequisites \
--header 'x-api-key: <api-key>'{
"data": [
{
"caseIdentifierUUID": "6b9ee241-d7cc-11e8-824f-0242ac160002",
"statementCode": "5.OA.A.2",
"description": "Write simple expressions that record calculations with numbers, and interpret numerical expressions without evaluating them. *For example, express the calculation \"add 8 and 7, then multiply by 2\" as $2 \\times (8 + 7)$. Recognize that $3 \\times (18932 + 921)$ is three times as large as 18932 + 921, without having to calculate the indicated sum or product.*",
"author": "1EdTech",
"provider": "Learning Commons",
"license": "https://creativecommons.org/licenses/by/4.0/",
"attributionStatement": "Knowledge Graph is provided by Learning Commons under the CC BY-4.0 license. Learning Commons received state standards and written permission under CC BY-4.0 from 1EdTech."
},
{
"caseIdentifierUUID": "6b9ed00e-d7cc-11e8-824f-0242ac160002",
"statementCode": "4.OA.B.4",
"description": "Find all factor pairs for a whole number in the range 1—100. Recognize that a whole number is a multiple of each of its factors. Determine whether a given whole number in the range 1—100 is a multiple of a given one-digit number. Determine whether a given whole number in the range 1—100 is prime or composite.",
"author": "1EdTech",
"provider": "Learning Commons",
"license": "https://creativecommons.org/licenses/by/4.0/",
"attributionStatement": "Knowledge Graph is provided by Learning Commons under the CC BY-4.0 license. Learning Commons received state standards and written permission under CC BY-4.0 from 1EdTech."
}
],
"pagination": {
"limit": 100,
"nextCursor": null,
"hasMore": false
}
}Fetches StandardsFrameworkItems that build towards the specified academic standard through the “buildsTowards” relationship.
This endpoint retrieves academic standards where proficiency supports the likelihood of success in the target academic standard. These are the foundational skills or concepts that contribute to mastery of the given academic standard. The relationship is directional but does not require strict prerequisite order - students don’t need to fully master prerequisites before engaging with the target academic standard.
Use this endpoint when you need to:
Note: Learning progression data is currently based on Student Achievement Partners’ Coherence Map for Common Core State Standards for Mathematics. Coverage for other subjects and frameworks may be limited.
The endpoint returns paginated results. Use the limit and cursor parameters to control the number of results returned.
Related topics:
curl --request GET \
--url https://api.learningcommons.org/knowledge-graph/v0/academic-standards/{caseIdentifierUUID}/prerequisites \
--header 'x-api-key: <api-key>'{
"data": [
{
"caseIdentifierUUID": "6b9ee241-d7cc-11e8-824f-0242ac160002",
"statementCode": "5.OA.A.2",
"description": "Write simple expressions that record calculations with numbers, and interpret numerical expressions without evaluating them. *For example, express the calculation \"add 8 and 7, then multiply by 2\" as $2 \\times (8 + 7)$. Recognize that $3 \\times (18932 + 921)$ is three times as large as 18932 + 921, without having to calculate the indicated sum or product.*",
"author": "1EdTech",
"provider": "Learning Commons",
"license": "https://creativecommons.org/licenses/by/4.0/",
"attributionStatement": "Knowledge Graph is provided by Learning Commons under the CC BY-4.0 license. Learning Commons received state standards and written permission under CC BY-4.0 from 1EdTech."
},
{
"caseIdentifierUUID": "6b9ed00e-d7cc-11e8-824f-0242ac160002",
"statementCode": "4.OA.B.4",
"description": "Find all factor pairs for a whole number in the range 1—100. Recognize that a whole number is a multiple of each of its factors. Determine whether a given whole number in the range 1—100 is a multiple of a given one-digit number. Determine whether a given whole number in the range 1—100 is prime or composite.",
"author": "1EdTech",
"provider": "Learning Commons",
"license": "https://creativecommons.org/licenses/by/4.0/",
"attributionStatement": "Knowledge Graph is provided by Learning Commons under the CC BY-4.0 license. Learning Commons received state standards and written permission under CC BY-4.0 from 1EdTech."
}
],
"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?