Atlasblock API

GET/v1/schools/colleges

Colleges and universities (IPEDS), filterable by state, zip, or county (paginated).

[ OPTIONS ]
NameTypeRequiredDescription
statestringNoUSPS state code.
zipstringNoUS zip code.
county_fipsstringNo5-digit county FIPS.
pageintegerNoPage number (default 1).
per_pageintegerNoResults 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
    }
  }
}
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.