Correlations Resource

The correlations resource provides endpoints for looking up correlations for standards and content items.


 

Get correlated standards for an individual content item

View in API Navigator

The endpoint returns a list of standards that correlate to a specific content item.  Results can be filtered by standards set, grade, and subject area.

 

Request

GET /correlations/content/{GUID}

 

Parameters

Field Description Location Type
guid GUID of the content item to see correlations for path string
set ID of the standards set to see correlation data from.   Query string string
subject Subject area of standards Query string string
grade Grade level of standards Query string string

 

Response

This endpoint returns a Standard Group object (see Table 4)

 


 

Get correlated content for an individual standard

View in API Navigator

This endpoint finds content items correlated to an individual standard.  Content results can be filtered and paged through.

 

Request

GET /correlations/standard/{GUID}

 

Parameters

Field Description Location Type
guid GUID of standard to find correlations for path string
filters Comma separated list of name/value pairs.  Field name and value are delimited with a pipe character “|”.  Available filter fields and values can be found via the /content/filters endpoint. Query string string
limit The number of results to return (default is 25) Query string integer
offset Numbering of record to begin the results at (used for paging) Query string integer

 Response This returns a Search Result JSON object (see Table 5)