curl --request GET \
--url https://api.learningcommons.org/knowledge-graph/v0/academic-standards/{caseIdentifierUUID}/learning-components \
--header 'x-api-key: <api-key>'{
"data": [
{
"identifier": "926bf4b0-e045-536b-ac02-2089d77cbf6c",
"description": "Find the least common multiple of two whole numbers less than or equal to 12",
"author": "Achievement Network",
"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 learning components under CC BY-4.0 from Achievement Network."
},
{
"identifier": "9bf54462-5fd0-59bf-8360-cd503e45b884",
"description": "Find the greatest common factor of two whole numbers less than or equal to 100",
"author": "Achievement Network",
"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 learning components under CC BY-4.0 from Achievement Network."
},
{
"identifier": "c587f727-0135-571c-8c60-7ad46e0a28c5",
"description": "Use the distributive property to express a sum of two whole numbers 1-100 with a common factor as a multiple of a sum of two whole numbers with no common factor",
"author": "Achievement Network",
"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 learning components under CC BY-4.0 from Achievement Network."
}
],
"pagination": {
"limit": 100,
"nextCursor": null,
"hasMore": false
}
}Fetches a list of LearningComponents that support a specific StandardsFrameworkItem.
This endpoint retrieves all learning components that are aligned to a given academic standard through the “supports” relationship. Learning components break down broad academic standards into granular, teachable skills, making them actionable for lesson planning and assessment design.
Use this endpoint when you need to:
Note: Learning component alignments are currently available primarily for Mathematics academic standards. Academic standards in other subjects or certain special categories (e.g., Standards for Mathematical Practice, Pre-K, advanced math) may not have LC alignments.
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}/learning-components \
--header 'x-api-key: <api-key>'{
"data": [
{
"identifier": "926bf4b0-e045-536b-ac02-2089d77cbf6c",
"description": "Find the least common multiple of two whole numbers less than or equal to 12",
"author": "Achievement Network",
"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 learning components under CC BY-4.0 from Achievement Network."
},
{
"identifier": "9bf54462-5fd0-59bf-8360-cd503e45b884",
"description": "Find the greatest common factor of two whole numbers less than or equal to 100",
"author": "Achievement Network",
"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 learning components under CC BY-4.0 from Achievement Network."
},
{
"identifier": "c587f727-0135-571c-8c60-7ad46e0a28c5",
"description": "Use the distributive property to express a sum of two whole numbers 1-100 with a common factor as a multiple of a sum of two whole numbers with no common factor",
"author": "Achievement Network",
"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 learning components under CC BY-4.0 from Achievement Network."
}
],
"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?