Version

Allows checking the current API version.

URI
/api/v9/version

GET Get the current version

Gets the current API version.

Syntax
GET /api/v9/version
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/version"

Response headers

HeaderValueDescription
Content-Typeapplication/jsonMedia type of the resource

Response codes

Response codeDescription
200 OKThe response was successfully returned

Example response

Response
{
  "version": 9,
  "prefix": "/api/v9",
  "is-latest": true,
  "is-deprecated": false
}