curl --request GET \
--url https://api.learningcommons.org/knowledge-graph/v0/assessments/{assessmentId}/standards \
--header 'x-api-key: <api-key>'{
"data": [
{
"identifier": "7b0d37ef-9b49-59cb-936c-3ead359aed05",
"caseIdentifierUUID": "6ba17134-d7cc-11e8-824f-0242ac160002",
"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 all academic standards aligned to a specific assessment.
Returns the standards that this assessment evaluates. These alignments indicate which learning expectations the assessment is designed to measure.
Use this endpoint when you need to:
curl --request GET \
--url https://api.learningcommons.org/knowledge-graph/v0/assessments/{assessmentId}/standards \
--header 'x-api-key: <api-key>'{
"data": [
{
"identifier": "7b0d37ef-9b49-59cb-936c-3ead359aed05",
"caseIdentifierUUID": "6ba17134-d7cc-11e8-824f-0242ac160002",
"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 unique identifier of the assessment
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?