Skip to main content
GET
/
schools
/
search
/
districts
School Districts
curl --request GET \
  --url https://api.ihuus.com/v1/schools/search/districts \
  --header 'Authorization: Bearer <token>'
{
  "districts": [
    {
      "name": "<string>",
      "geoid": "<string>",
      "state_fp": "<string>",
      "lograde": "<string>",
      "higrade": "<string>",
      "sd_type": "<string>",
      "rating": 5,
      "rating_summary": "<string>",
      "rating_year": 123
    }
  ],
  "additional_info": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.ihuus.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Your access token or API key. Pass as Authorization: Bearer <token>.

Query Parameters

lat
number
required

Latitude of the search location (WGS 84).

Required range: -90 <= x <= 90
lon
number
required

Longitude of the search location (WGS 84).

Required range: -180 <= x <= 180

Response

Successful Response

API response model for school district search results.

districts
DistrictResult · object[]
required

List of school districts found at the location.

additional_info
string | null

Any additional information or disclaimers about the search results.