# /ipeds/institutions/admissions

`POST /api/ipeds/institutions/admissions`

Price: 1 credit

Get the IPEDS admissions record of one US college or university for a survey year — applications, admissions and first-time enrolment split by sex, the SAT and ACT score percentiles of enrolled students, and how the institution weighs each admission requirement

## How to use it

Admissions selectivity and entry test scores for one UNITID. Every requirement is reported as how the institution treats it — required, recommended, considered, or neither — rather than as a yes/no, so read the value rather than testing for presence. The percentiles describe students who enrolled and submitted that test, not applicants, and `sat_submitted_percent` says how few that can be; an institution that reports no scores at all is usually open-admission, which `has_open_admissions_policy` states directly. `by_sex` carries one row per sex plus a total row, so sum nothing yourself. Two surveys back this endpoint and they end in different years: requirements and test scores stop after 2022, application counts continue, so a later year returns `by_sex` alone.

## Parameters

- `access-token` (string, required)

## Request body

- `timeout` (integer) — Max scrapping execution timeout (in seconds) (default: 300; min: 20; max: 1500)
- `institution` (string, required) — IPEDS UNITID of the institution (examples: "166683", "104151", "166027"; minLength: 1)
- `year` (integer) — Survey year the admissions record is read for (default: 2022; min: 1990; max: 2100)

## Response

### 200 — Successful Response

- `@type` (string) (default: "IpedsAdmissions")
- `id` (string, required)
- `institution_id` (string, required)
- `year` (integer, nullable)
- `has_open_admissions_policy` (boolean, nullable)
- `admits_no_entering_freshmen` (boolean, nullable)
- `years_of_college_required` (integer, nullable)
- `requirements` (object, nullable)
  - `@type` (string) (default: "IpedsAdmissionRequirements")
  - `high_school_record` (string, nullable)
  - `high_school_gpa` (string, nullable)
  - `high_school_rank` (string, nullable)
  - `high_school_diploma_or_equivalent` (string, nullable)
  - `college_preparatory_programme` (string, nullable)
  - `demonstrated_competencies` (string, nullable)
  - `recommendations` (string, nullable)
  - `personal_statement` (string, nullable)
  - `admission_test_scores` (string, nullable)
  - `sat_scores` (string, nullable)
  - `other_test_scores` (string, nullable)
  - `toefl` (string, nullable)
  - `ability_to_benefit_test` (string, nullable)
  - `legacy_status` (string, nullable)
  - `work_experience` (string, nullable)
  - `state_residence` (string, nullable)
  - `minimum_age` (string, nullable)
  - `other` (string, nullable)
- `test_scores` (object, nullable)
  - `@type` (string) (default: "IpedsTestScores")
  - `sat_submitted_count` (integer, nullable)
  - `sat_submitted_percent` (number, nullable)
  - `sat_reading_25th` (integer, nullable)
  - `sat_reading_50th` (integer, nullable)
  - `sat_reading_75th` (integer, nullable)
  - `sat_math_25th` (integer, nullable)
  - `sat_math_50th` (integer, nullable)
  - `sat_math_75th` (integer, nullable)
  - `sat_writing_25th` (integer, nullable)
  - `sat_writing_75th` (integer, nullable)
  - `act_submitted_count` (integer, nullable)
  - `act_submitted_percent` (number, nullable)
  - `act_composite_25th` (integer, nullable)
  - `act_composite_50th` (integer, nullable)
  - `act_composite_75th` (integer, nullable)
  - `act_english_25th` (integer, nullable)
  - `act_english_50th` (integer, nullable)
  - `act_english_75th` (integer, nullable)
  - `act_math_25th` (integer, nullable)
  - `act_math_50th` (integer, nullable)
  - `act_math_75th` (integer, nullable)
  - `act_writing_25th` (integer, nullable)
  - `act_writing_75th` (integer, nullable)
  - `reporting_period` (string, nullable)
- `by_sex` (array) (default: [])
  - `@type` (string) (default: "IpedsAdmissionsBySex")
  - `sex` (string, nullable)
  - `applied_count` (integer, nullable)
  - `admitted_count` (integer, nullable)
  - `enrolled_count` (integer, nullable)
  - `enrolled_full_time_count` (integer, nullable)
  - `enrolled_part_time_count` (integer, nullable)

## Errors

### 422 — Validation Error

The request body did not validate

What to do: Check the fields against this schema. A URN with the wrong prefix is the most common cause.

- `detail` (array)
  - `loc` (array, required)
  - `msg` (string, required)
  - `type` (string, required)
  - `input` (any)
  - `ctx` (object)

### 408

The request ran past its time limit

What to do: Raise `timeout` in the request body, up to the maximum this endpoint documents. Lowering `count` or turning off the `with_*` flags also helps, because less work finishes sooner.

### 412

No IPEDS admissions record for that UNITID in that survey year

What to do: Retrying will not help: either the entity does not exist, or the input points at a different one.

### 429

Too many requests: a rate limit or a usage window is exhausted

What to do: When the response carries an X-Retry-After header, wait that many seconds and retry: the same number is in the body as `detail.retry_after`, and the limit clears once that window passes. The message in the body names the limit that was hit.

### 500

Something broke on our side

What to do: Retrying will not help. If it keeps happening, send us the X-Request-ID from the response headers.

### 529

Rate limit reached, or the endpoint is overloaded

What to do: Wait at least 30 seconds, then retry.

## Response envelope

Success: Array of objects (may be empty if no results)

Error: Error may coexist with partial results if it occurs mid-execution. Check X-Error header and status code.

Every response carries these headers:

- `X-Error` — Error message text (present only on error)
- `X-Request-ID` — Unique request identifier
- `X-Execution-Time` — Execution time in seconds
- `X-Result-Count` — How many records the body carries. 0 means an empty result, which is a normal answer and not by itself an error. A non-zero count can come back together with X-Error when the failure happened partway through — read this header and X-Error independently.
- `X-Total-Available-Results` — How many records exist for this query, when the endpoint can say. On a `dry_run` request this is the answer and the body is empty. It saturates: the endpoint's documented maximum means 'at least that many', any smaller number is exact.
- `X-Warning` — Present when the request body carried keys this endpoint does not document. They were ignored, so any filter you meant to apply through them did not apply. Check the spelling against this schema and retry.
- `X-Retry-After` — Seconds to wait before retrying. Present only on 429.

