For Developers
Get Subject
GET https://ed.link/api/v2/graph/subjects/:subject_id
Retrieve information about a specific Subject.
Request Parameters
| Parameter | Type | Description |
|---|---|---|
subject_id | string | The UUID of the desired Subject. |
Sample Request
axios.get('https://ed.link/api/v2/graph/subjects/4f099c36-4533-5b30-9f1a-cf50fa5fec64', {
headers: {
authorization: `Bearer ${integration_access_token}`
}
});
Sample Response
{
"$data": {
"id": "4f099c36-4533-5b30-9f1a-cf50fa5fec64",
"code": "CHEM-102",
"ceds_code": "CEDS.03",
"description": "Some extra text",
"created_date": "2023-05-04T21:57:53.814Z",
"updated_date": "2025-08-07T22:34:43.814Z",
"name": "Chemistry II",
"properties": {},
"identifiers": [],
"department_id": "9c529a86-fbd4-5667-994a-0f41218fb0b7"
},
"$request": "00000000-0000-0000-0000-000000000000"
}
