---
title: "Crosswalks for a standard"
method: GET
path: "/academic-standards/{caseIdentifierUUID}/crosswalks"
tags: ["Standards Crosswalks", "Academic Standards"]
---

# Crosswalks for a standard

`GET /academic-standards/{caseIdentifierUUID}/crosswalks`

Fetches a list of standards that align to a specific standard through shared Learning Components.

This endpoint retrieves crosswalk relationships bidirectionally:
- **State standard → CCSS**: Pass in a state standard to get matching Common Core State Standards (CCSS)
- **CCSS → State standards**: Pass in a Common Core State Standards (CCSS) standard to get matching state standards across jurisdictions

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:
- Find Common Core State Standards (CCSS) standards that align to a state standard for content adaptation
- Find state standards that align to a Common Core State Standards (CCSS) standard across multiple jurisdictions
- Understand the similarity between standards
- Map content between Common Core and state frameworks
- Analyze the degree of overlap between standards

**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:**
- [Standards crosswalks methodology](/knowledge-graph/graph-reference/standards-crosswalks)

## Path parameters

- `caseIdentifierUUID` string, uuid, required

## Query parameters

- `jurisdiction` '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' — US state, territory, or multi-state designation
- `minJaccardScore` number, float
- `limit` integer
- `cursor` string

## Response `200`

Successfully retrieved list of Common Core State Standards (CCSS) standards if a state standard was provided, or a list of state standards if a CCSS standard was provided

- object — Cursor-based paginated response
  - `data` object[], required — Array of result items
    - `caseIdentifierUUID` string, uuid, required — CASE Network UUID for the resource
    - `statementCode` string, nullable — Code that identifies a standard within its standards framework (e.g., "3.NF.A.1", "A.1B", "MP1"); `null` for organizational groupings without assigned codes
    - `description` string, nullable — Full text of the standard describing what students should know or be able to do
    - `jurisdiction` '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' — US state, territory, or multi-state designation
    - `jaccard` number, float — Jaccard score representing the proportion of shared components between a state and Common Core State Standards (CCSS) standard; calculated as `sharedLCCount / (stateLCCount + ccssLCCount - sharedLCCount)`
    - `stateLCCount` integer — Number of components supporting the state standard
    - `ccssLCCount` integer — Number of components supporting the Common Core State Standards (CCSS) standard
    - `sharedLCCount` integer — Number of components supporting both the state and Common Core State Standards (CCSS) standards
    - `author` string, required — Author or creator of the resource
    - `provider` string, required — Source data provider for the resource
    - `license` string, uri, required — URL to the resource's license document
    - `attributionStatement` string, required — Statement that acknowledges the resource's author and provider, as required by the CC BY 4.0 license
  - `pagination` Pagination, required — Cursor-based pagination metadata
    - `limit` integer, required — Maximum number of results to return per page
    - `nextCursor` string, nullable — Cursor for fetching the next page of results in your next request (`null` if there are no more results)
    - `hasMore` boolean, required — Whether there are more results after this page

## Other responses

- `400` — Bad request - Invalid CASE Network UUID or filter parameters
- `404` — Academic standard not found
- `422` — Unprocessable Entity - Invalid parameter values (e.g., enum value not in allowed list)
- `500` — Internal server error

---

[API](https://skmtc.dev/learningcommons/apis/learning-commons-knowledge-graph-rest-api.md) · [All operations](https://skmtc.dev/learningcommons/apis/learning-commons-knowledge-graph-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/learningcommons/learning-commons-knowledge-graph-rest-api/revisions/87a44fbb081f/schema)
