curl --request GET \
--url https://api.learningcommons.org/knowledge-graph/v0/academic-standards/{caseIdentifierUUID}/related-standards \
--header 'x-api-key: <api-key>'{
"data": [
{
"caseIdentifierUUID": "6ba0feac-d7cc-11e8-824f-0242ac160002",
"statementCode": "5.NF.B.7",
"description": "Apply and extend previous understandings of division to divide unit fractions"
},
{
"caseIdentifierUUID": "6ba0e123-d7cc-11e8-824f-0242ac160002",
"statementCode": "5.NF.B.6",
"description": "Solve real world problems involving multiplication of fractions"
},
{
"caseIdentifierUUID": "6ba0c456-d7cc-11e8-824f-0242ac160002",
"statementCode": "5.NF.B.5",
"description": "Interpret multiplication as scaling (resizing)"
},
{
"caseIdentifierUUID": "6ba0a789-d7cc-11e8-824f-0242ac160002",
"statementCode": "5.NF.B.4",
"description": "Apply and extend previous understandings of multiplication to multiply a fraction by a whole number"
}
],
"pagination": {
"limit": 100,
"nextCursor": "eyJpZGVudGlmaWVyIjoiNWI3ZjE4ZmUtYmQxNC01NDI3LThkMzUtNWQzNGMzYjhmMTBmIn0=",
"hasMore": true
}
}Fetches StandardsFrameworkItems that are related to the specified academic standard through the “relatesTo” relationship.
This endpoint retrieves academic standards that share meaningful conceptual or skill-based links with the given academic standard, without implying a specific sequence or prerequisite order. These lateral connections highlight associations that can inform instructional design, identify reinforcing concepts, or reveal thematic links across academic standards.
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}/related-standards \
--header 'x-api-key: <api-key>'{
"data": [
{
"caseIdentifierUUID": "6ba0feac-d7cc-11e8-824f-0242ac160002",
"statementCode": "5.NF.B.7",
"description": "Apply and extend previous understandings of division to divide unit fractions"
},
{
"caseIdentifierUUID": "6ba0e123-d7cc-11e8-824f-0242ac160002",
"statementCode": "5.NF.B.6",
"description": "Solve real world problems involving multiplication of fractions"
},
{
"caseIdentifierUUID": "6ba0c456-d7cc-11e8-824f-0242ac160002",
"statementCode": "5.NF.B.5",
"description": "Interpret multiplication as scaling (resizing)"
},
{
"caseIdentifierUUID": "6ba0a789-d7cc-11e8-824f-0242ac160002",
"statementCode": "5.NF.B.4",
"description": "Apply and extend previous understandings of multiplication to multiply a fraction by a whole number"
}
],
"pagination": {
"limit": 100,
"nextCursor": "eyJpZGVudGlmaWVyIjoiNWI3ZjE4ZmUtYmQxNC01NDI3LThkMzUtNWQzNGMzYjhmMTBmIn0=",
"hasMore": true
}
}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?