GET/v1/counties/{countyFips}/schools
Every school in a county: public K-12, colleges, and private (paginated).
[ OPTIONS ]
| Name | Type | Required | Description |
|---|---|---|---|
countyFips | string (path) | Yes | 5-digit county FIPS code (e.g. 37119). |
source / level / sector / charter / type | string | No | Same filters as /v1/schools. |
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/counties/37119/schools?source=ccd"[ 200 OK ]
{
"status": "success",
"data": {
"county_fips": "37119",
"schools": [
{
"id": "370297001543",
"name": "Myers Park High",
"source": "ccd",
"level": "high",
"zip": "28207"
}
],
"pagination": {
"page": 1,
"per_page": 25,
"total": 341,
"total_pages": 14
}
}
}[ TRY IT ]Open playground →
GET/v1/counties/37119/schools
[ PATH ]
[ QUERY ]
[ CURL ]
curl "https://atlasblock.dev/api/v1/counties/37119/schools" \ -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.
[ MORE IN COUNTIES ]
