Intake

Represents a single intake configured in DreamApply.

URI
/api/v10/intakes/ID

GET Get an intake

Retrieve information about a specific intake.

All dates, such as deadlines, are configured using ISO date notation but omit the year part as the intake system is designed to automatically roll over to the next year when appropriate. For this reason, dates are normally specified as 0000-MM-DD, for example, 0000-04-23.

Syntax
GET /api/v10/intakes/123
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/intakes/123"

Response headers

HeaderValueDescription
Content-Typeapplication/jsonThe media type of the resource
Content-Length1234The size of the response body in bytes

Response codes

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

Example response

Response
{
  "id": 1,
  "name": "Fall semester intake",
  "start": "2025-01-01",
  "pre": {
    "deadline": null,
    "info": "Submit your application by the pre-deadline on July 01, 2025 for priority review, increased consideration and potential early access to scholarships.",
    "mask": false
  },
  "policy": "Strict (course)",
  "deadlines": {
    "001": {
      "deadline": "2025-06-01",
      "info": null
    }
  },
  "decision": {
    "policy": "Required",
    "days": 7
  },
  "arrival": "2025-08-31",
  "commence": "2025-08-01",
  "academic-term": {
    "id": 1,
    "year": "/api/v10/academic-years/2025",
    "name": "Fall semester 2025/26",
    "type": "/api/v10/academic-terms/types/1",
    "start": "2025-09-01",
    "grace": "2025-12-31",
    "finish": "2025-12-31"
  }
}