GET/v1/schools/colleges
Colleges and universities (IPEDS), filterable by state, zip, or county (paginated).
[ OPTIONS ]
| Name | Type | Required | Description |
|---|---|---|---|
state | string | No | USPS state code. |
zip | string | No | US zip code. |
county_fips | string | No | 5-digit county FIPS. |
page | integer | No | Page number (default 1). |
per_page | integer | No | Results per page (default 25, max 100). |
[ EXAMPLE REQUEST ]
curl "https://atlasblock.dev/api/v1/schools/colleges?state=NC"[ 200 OK ]
{
"status": "success",
"data": {
"colleges": [
{
"id": "199120",
"name": "UNC Charlotte",
"source": "ipeds",
"level": "postsecondary",
"sector": "public",
"zip": "28223",
"state": "NC"
}
],
"pagination": {
"page": 1,
"per_page": 25,
"total": 190,
"total_pages": 8
}
}
}[ TRY IT ]Open playground →
GET/v1/schools/colleges?state=NC
[ QUERY ]
[ CURL ]
curl "https://atlasblock.dev/api/v1/schools/colleges?state=NC" \ -H "Authorization: Bearer $ATLASBLOCK_API_KEY"
[ EVERY REQUEST ]
Send an Authorization: Bearer key against the base URL https://atlasblock.dev/api. Every call counts toward your plan quota. See the overview for authentication, rate limits, and status codes.
