Rankings

Represents a collection of ranking lists created in DreamApply.

URI
/api/v10/rankings

GET List rankings

List all ranking lists created in DreamApply.

This request is supported in API version 10 and later.

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

Response headers

HeaderValueDescription
Content-Typeapplication/jsonThe media type of the resource
Content-Length1234The size of the response body in bytes
X-Count3The number of ranking lists

Response codes

Response codeDescription
200 OKThe list of ranking lists was successfully returned

Example response

Response
{
  "1": {
    "id": 1,
    "created": "2026-05-20T11:01:02+00:00",
    "modified": "2026-05-20T11:01:02+00:00",
    "title": "Computer Science and Engineering Ranking",
    "offers": "/api/v10/rankings/1/offers"
  },
  "2": {
    "id": 2,
    "created": "2026-05-20T11:01:17+00:00",
    "modified": "2026-05-20T11:01:17+00:00",
    "title": "Electrical and Electronics Engineering Ranking",
    "offers": "/api/v10/rankings/2/offers"
  },
  "3": {
    "id": 3,
    "created": "2026-05-20T11:01:31+00:00",
    "modified": "2026-05-20T11:01:31+00:00",
    "title": "Industrial and Systems Engineering Ranking",
    "offers": "/api/v10/rankings/3/offers"
  }
}