curl --request GET \
--url https://api.learningcommons.org/knowledge-graph/v0/academic-standards/{caseIdentifierUUID}/crosswalks \
--header 'x-api-key: <api-key>'{
"data": [
{
"caseIdentifierUUID": "0bb530f0-4b99-11ec-a64d-0242ac1a0003",
"statementCode": "6.NS.B.4",
"description": "Use prime factorization to find the greatest common factor of two whole numbers less than or equal to 100 and the least common multiple of two whole numbers less than or equal to 12. 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 relatively prime numbers. For example, express 36 + 8 as 4(9 + 2).",
"jurisdiction": "Rhode Island",
"jaccard": 1,
"stateLCCount": 3,
"ccssLCCount": 3,
"sharedLCCount": 3,
"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": "16674743-eb8f-11e9-9f9f-0242ac140002",
"statementCode": "6.NS.B.4",
"description": "Find the greatest common factor of two whole numbers less than or equal to 100 and the least common multiple of two whole numbers less than or equal to 12. 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. *For example, express 36 + 8 as 4(9 + 2).*",
"jurisdiction": "Colorado",
"jaccard": 1,
"stateLCCount": 3,
"ccssLCCount": 3,
"sharedLCCount": 3,
"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 a list of standards that align to a specific standard through shared Learning Components.
This endpoint retrieves crosswalk relationships bidirectionally:
Each crosswalk includes similarity metrics based on measurable overlap of Learning Components to help understand the strength and nature of the alignment.
Crosswalks provide a scalable way to extend mappings between CCSS and state-specific frameworks without independent matching logic. By leveraging the LC superset, crosswalks show where standards converge in content coverage.
Use this endpoint when you need to:
Note: Crosswalks are currently available only for Mathematics standards in states where LC alignment exists. Crosswalks are evidence-based (require at least one shared LC).
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}/crosswalks \
--header 'x-api-key: <api-key>'{
"data": [
{
"caseIdentifierUUID": "0bb530f0-4b99-11ec-a64d-0242ac1a0003",
"statementCode": "6.NS.B.4",
"description": "Use prime factorization to find the greatest common factor of two whole numbers less than or equal to 100 and the least common multiple of two whole numbers less than or equal to 12. 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 relatively prime numbers. For example, express 36 + 8 as 4(9 + 2).",
"jurisdiction": "Rhode Island",
"jaccard": 1,
"stateLCCount": 3,
"ccssLCCount": 3,
"sharedLCCount": 3,
"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": "16674743-eb8f-11e9-9f9f-0242ac140002",
"statementCode": "6.NS.B.4",
"description": "Find the greatest common factor of two whole numbers less than or equal to 100 and the least common multiple of two whole numbers less than or equal to 12. 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. *For example, express 36 + 8 as 4(9 + 2).*",
"jurisdiction": "Colorado",
"jaccard": 1,
"stateLCCount": 3,
"ccssLCCount": 3,
"sharedLCCount": 3,
"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
Filter by jurisdiction (state/territory) US state, territory, or multi-state designation
Alabama, Alaska, Arizona, Arkansas, California, Colorado, Connecticut, Delaware, Florida, Georgia, Hawaii, Idaho, Illinois, Indiana, Iowa, Kansas, Kentucky, Louisiana, Maine, Maryland, Massachusetts, Michigan, Minnesota, Mississippi, Missouri, Montana, Nebraska, Nevada, New Hampshire, New Jersey, New Mexico, New York, North Carolina, North Dakota, Ohio, Oklahoma, Oregon, Pennsylvania, Rhode Island, South Carolina, South Dakota, Tennessee, Texas, Utah, Vermont, Virginia, Washington, Washington, D.C., West Virginia, Wisconsin, Wyoming, Multi-State Filter crosswalks by minimum Jaccard similarity score. Only return standards with a Jaccard score greater than or equal to this value. Use this to focus on stronger alignments.
0 <= x <= 1Maximum 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.
Successfully retrieved list of crosswalked standards. If a state standard is provided, returns matching CCSS standards. If a CCSS standard is provided, returns matching state standards (optionally filtered by jurisdiction).
Was this page helpful?