Scores
API version
Select a version to change the base URI
in syntax and code examples. Learn about versions:
in syntax and code examples. Learn about versions
Represents a list of scores for the application.
URI
/api/v9/applications/ID/scoresGET 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
| Header | Value | Description |
|---|---|---|
Content-Type | application/json | Media type of the resource |
Content-Length | 1234 | Size of the response body in bytes |
X-Count | 2 | Number of scores for this application |
Response codes
| Response code | Description |
|---|---|
200 OK | The 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"
}
}