For Developers

List Schools

GET https://ed.link/api/v2/graph/people/:person_id/schools

Retrieve a list of Schools associated with the specified Person.

Request Parameters

This query allows for filtering results.

This query allows for standard paging parameters.

ParameterLocationTypeDescription
person_idurlstring

The UUID of the desired Person.

$firstquerynumber

Returns the first n elements from the list.

$lastquerynumber

Returns the last n elements from the list.

$beforequeryuuid

Returns the elements in the list that come before the specified item.

$afterqueryuuid

Returns the elements in the list that come after the specified item.

It is best practice to use either $first or $last in conjunction with the $next value returned by the API to paginate through results.

Sample Request

axios.get('https://ed.link/api/v2/graph/people/2aaab406-be70-4b65-9274-275f3d1445f4/schools', {
    headers: {
        authorization: `Bearer ${integration_access_token}`
    }
});

Sample Response

{
    "$data": [
        {
            "id": "af00d878-4cbc-5968-8c53-62df15872ab2",
            "created_date": "2023-05-12T23:02:21.511Z",
            "updated_date": "2025-08-07T22:34:43.764Z",
            "name": "Kerbey Lane Elementary",
            "grade_levels": ["01", "02", "03", "04", "05"],
            "locale": "en",
            "time_zone": "America/Chicago",
            "location": {},
            "properties": {},
            "district_id": "2a3c681b-80e5-4d13-a603-d4cc97e568e1"
        }
    ],
    "$request": "00000000-0000-0000-0000-000000000000"
}