POST /api/ipeds/institutions/search
Price: 20 credits
Search the IPEDS directory of US colleges and universities by state, county, metro area, region, sector, ownership, level, enrolment band and OPE id, and get the full directory record for each match — address, coordinates, Carnegie classifications, Title IV participation and federal identifiers
Browse the IPEDS institution census by structure and geography. There is no name search here — IPEDS accepts no name, city or ZIP filter at all, so to find an institution by name use collegescorecard/schools/search and feed the `id` it returns to ipeds/institutions, which is the same UNITID. `state` takes a postal code; `county_fips` and `cbsa_code` are the finer geography axes. `sector` already combines ownership with level, so pass it instead of `ownership` plus `level` when you want one of the ten standard IPEDS sectors. `year` reads the directory as it stood in that survey year, which is how closed institutions are found: they are present in the years they operated and absent afterwards. Rows arrive in ascending UNITID, so a request cut short by `count` returns the lowest UNITIDs of the match rather than a sample of it, and UNITIDs were assigned by state and era — narrow with the filters instead of treating a capped result as representative.
access-token string requiredtimeout integer — Max scrapping execution timeout (in seconds) (default: 300; min: 20; max: 1500)count integer required — Max number of institutions to return (min: 1; max: 3000)year integer — Survey year the directory is read for (default: 2024; min: 1980; max: 2100)state string nullable — Two-letter US state, DC or territory postal code the campus sits in (examples: "MA", "CA", "PR")county_fips string nullable — Five-digit county FIPS code the campus sits in (examples: "25017")cbsa_code string nullable — Core Based Statistical Area code the campus sits in (examples: "14460")region string nullable — US Bureau of Economic Analysis region the campus sits in (one of: "us_service_schools", "new_england", "mid_east", "great_lakes", "plains", "southeast", "southwest", "rocky_mountains", "far_west", "outlying_areas")sector string nullable — Ownership and level combined, as IPEDS defines a sector (one of: "administrative_unit", "public_four_year", "private_nonprofit_four_year", "private_for_profit_four_year", "public_two_year", "private_nonprofit_two_year", "private_for_profit_two_year", "public_less_than_two_year", "private_nonprofit_less_than_two_year", "private_for_profit_less_than_two_year")ownership string nullable — Who controls the institution (one of: "public", "private_nonprofit", "private_for_profit")level string nullable — Length of the longest programme offered (one of: "less_than_two_year", "two_year", "four_year_or_above")size_category string nullable — Total enrolment band the institution falls in (one of: "under_1000", "from_1000_to_4999", "from_5000_to_9999", "from_10000_to_19999", "from_20000")opeid string nullable — Office of Postsecondary Education id, the identifier that links to federal aid records (examples: "00217800")degree_granting_only boolean — Only institutions that award degrees rather than certificates alone (default: false)hbcu_only boolean — Only historically Black colleges and universities (default: false)tribal_college_only boolean — Only tribal colleges and universities (default: false)land_grant_only boolean — Only land-grant institutions (default: false)@type string (default: "IpedsInstitution")id string requiredyear integer nullablename string nullablealternative_names array (default: [])address string nullablecity string nullablestate string nullablezip_code string nullablecounty string nullablecounty_fips string nullablestate_fips string nullablelatitude number nullablelongitude number nullableregion string nullablelocale string nullablecbsa_code string nullablecbsa_type string nullablecsa_code string nullablenecta_code string nullablecongress_district_code string nullablephone string nullableweb_url string nullableapplication_url string nullablefinancial_aid_url string nullablenet_price_calculator_url string nullableveterans_services_url string nullabledisability_services_url string nullableathletics_url string nullablechief_administrator string nullablechief_administrator_title string nullablesector string nullableownership string nullablelevel string nullablecategory string nullablesize_category string nullablehighest_degree string nullablehighest_award_level string nullableis_degree_granting boolean nullableis_hbcu boolean nullableis_tribal_college boolean nullableis_land_grant boolean nullablehas_hospital boolean nullablegrants_medical_degree boolean nullableoffers_undergraduate boolean nullableoffers_graduate boolean nullableis_primarily_postsecondary boolean nullableis_open_to_public boolean nullableis_currently_active boolean nullablestatus string nullabletitle_iv_status string nullablepostsecondary_status string nullablepostsecondary_title_iv_status string nullablereporting_method string nullableis_part_of_system boolean nullablesystem_name string nullablecomparison_group_code string nullablehas_custom_comparison_group boolean nullableclosed_date string nullabledeleted_year integer nullablesuccessor_id string nullableopeid string nullableein string nullableduns string nullableuei string nullablecarnegie object nullable@type string (default: "IpedsCarnegieClassification")basic_2000 string nullablebasic_2010 string nullablebasic_2015 string nullablebasic_2018 string nullablebasic_2021 string nullablebasic_2025 string nullableundergraduate_profile_2010 string nullableundergraduate_profile_2015 string nullableundergraduate_profile_2018 string nullableundergraduate_profile_2021 string nullableundergraduate_profile_2025 string nullableundergraduate_instructional_program_2010 string nullableundergraduate_instructional_program_2015 string nullableundergraduate_instructional_program_2018 string nullableundergraduate_instructional_program_2021 string nullablegraduate_instructional_program_2010 string nullablegraduate_instructional_program_2015 string nullablegraduate_instructional_program_2018 string nullablegraduate_instructional_program_2021 string nullablegraduate_instructional_program_2025 string nullableenrollment_profile_2010 string nullableenrollment_profile_2015 string nullableenrollment_profile_2018 string nullableenrollment_profile_2021 string nullablesize_and_setting_2010 string nullablesize_and_setting_2015 string nullablesize_and_setting_2018 string nullablesize_and_setting_2021 string nullableinstitution_size_2025 string nullableaward_level_focus_2025 string nullableresearch_activity_2025 string nullablestudent_access_and_earnings_2025 string nullable422 — The request body did not validate Check the fields against this schema. A URN with the wrong prefix is the most common cause.408 — The request ran past its time limit 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 — The entity was not found, or a precondition failed 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 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 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 Wait at least 30 seconds, then retry.X-Error — Error message text (present only on error)X-Request-ID — Unique request identifierX-Execution-Time — Execution time in secondsX-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.