Academic year

Represents a single academic year.

URI
/api/v9/academic-years/year

GET Get an academic year

List academic years configured into the system. These in turn academic terms.

An academic year does not have to align with the calendar year, so it may also have a name like 2017/18 when it spans, for instance, from September to September.

Syntax
GET /api/v9/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/v9/academic-years/2025"

Response headers

HeaderValueDescription
Content-Typeapplication/jsonMedia type of the resource
Content-Length1234Size of the response body in bytes

Response codes

Response codeDescription
200 OKThe academic year data was successfully returned
404 Not FoundThe academic year was not found

Example response

Response
{
  "name": "2025/26",
  "start": "2025-09-01"
}