Scoresheets

Represents a list of all scoresheets created in the system.

URI
/api/v9/scoresheets

GET List scoresheets

List scoresheets that are available via the API.

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

Response headers

HeaderValueDescription
Content-Typeapplication/jsonMedia type of the resource
Content-Length1234Size of the response body in bytes
X-Count15Number of created scoresheets

Response codes

Response codeDescription
200 OKThe list of scoresheets was successfully returned

Example response

Response
{
  "1": {
    "created": "2023-07-01T10:00:00+00:00",
    "scored": "2025-12-11T11:48:52+00:00",
    "confirmed": null,
    "name": "English proficiency (IELTS)",
    "type": "IELTS",
    "date": "Optional",
    "depth": "Application",
    "range_min": 4.5,
    "range_max": 9.5,
    "scale": 1,
    "instructions": "Please provide your IELTS test results in the designated fields.  If you have taken an alternative English proficiency test like TOEFL, you may skip specifying a IELTS score.",
    "reference": "Required",
    "subject": "None",
    "language": "None"
  },
  "2": {
    "created": "2025-02-10T12:44:43+00:00",
    "scored": "2025-08-22T12:35:07+00:00",
    "confirmed": null,
    "name": "Academic performance (computer science)",
    "type": "Number",
    "date": "None",
    "depth": "Application",
    "range_min": 1,
    "range_max": 10,
    "scale": 0,
    "instructions": "Please provide high school examination results in computer science here.",
    "reference": "None",
    "subject": "None",
    "language": "None"
  }
}