Academic year
API version
Select a version to change the base URI
in syntax and code examples. Learn about versions:
in syntax and code examples. Learn about versions
Represents a single academic year.
URI
/api/v10/academic-years/yearGET Get an academic year
Retrieve information about a specific academic year configured in DreamApply.
An academic year does not have to align with the calendar year. It may also have a name like 2017/18 when it spans, for example, from September to September.
Syntax
GET /api/v10/academic-years/2025
Host: apply.example.edu
Authorization: DREAM apikey="..."Example request
Request
curl
curl \
-X GET \
-H "Authorization: DREAM apikey=\"YOUR-API-KEY\"" \
"https://apply.example.edu/api/v10/academic-years/2025"Response headers
| Header | Value | Description |
|---|---|---|
Content-Type | application/json | The media type of the resource |
Content-Length | 1234 | The size of the response body in bytes |
Response codes
| Response code | Description |
|---|---|
200 OK | The academic year data was successfully returned |
404 Not Found | The academic year was not found |
Example response
Response
{
"name": "2025/26",
"start": "2025-09-01"
}