Scores

Represents a list of scores for the application.

URI
/api/v9/applications/ID/scores

GET List scores

Return a list of scores for the application.

Syntax
GET /api/v9/applications/123/scores
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/applications/123/scores"

Response headers

HeaderValueDescription
Content-Typeapplication/jsonMedia type of the resource
Content-Length1234Size of the response body in bytes
X-Count2Number of scores for this application

Response codes

Response codeDescription
200 OKThe list of scores was successfully returned

Example response

Response
{
  "20": {
    "scored": "2025-12-11T11:49:45+00:00",
    "scoresheet": "/api/v9/scoresheets/1",
    "application": "/api/v9/applications/415",
    "offer": null,
    "points": "9.50",
    "comments": "Strong candidate",
    "date": null,
    "reference": null,
    "subject": null,
    "language": null
  },
  "21": {
    "scored": "2025-12-11T11:48:52+00:00",
    "scoresheet": "/api/v9/scoresheets/9",
    "application": "/api/v9/applications/415",
    "offer": null,
    "points": "1450",
    "comments": "SAT Score breakdown: EBRW 720 / Math 730",
    "date": "2025-03-09",
    "reference": "SAT-2025-5620",
    "subject": "SAT (Scholastic Assessment Test)",
    "language": "EN"
  }
}