Retrieves Internet service provider coverage for specified census geographic areas. This endpoint allows querying by state, county, tract, or block GEOIDs, returning all providers that offer service in the specified areas.
Census geography follows a hierarchical structure where each level contains the parent levels:
06 for California) or postal abbreviation (CA)06037 for Los Angeles County)06037100100)060371001001000)states[]=CA&states[]=NY returns providers in CA OR NY)states[]=CA&counties[]=06037 returns providers in CA AND county 06037)Each provider includes:
matched_areas: Which of the queried geographic areas this provider covers# Providers in California and New York
GET /coverage?states[]=CA&states[]=NY
# Providers in Los Angeles County
GET /coverage?counties[]=06037
# Providers in specific tracts
GET /coverage?tracts[]=06037100100&tracts[]=06037100200
# Providers in California AND Los Angeles County (intersection)
GET /coverage?states[]=CA&counties[]=06037
06) or postal abbreviations (CA)Bearer token authentication using API tokens.
Include the token in the Authorization header as: Authorization: Bearer <token>
Obtain tokens through your Hum API account dashboard or contact support@letshum.com for access.
State FIPS codes (2 characters) or postal abbreviations.
Examples: 06 or CA for California, 36 or NY for New York
2County GEOIDs (5 characters: 2-digit state FIPS + 3-digit county FIPS).
Example: 06037 for Los Angeles County (06=California, 037=LA County)
^\d{5}$Census tract GEOIDs (11 characters: state + county + 6-digit tract code).
Example: 06037100100 (California, LA County, tract 100100)
^\d{11}$Census block GEOIDs (15 characters: full block identifier).
Example: 060371001001000
^\d{15}$Provider coverage data for the specified geographic areas
Human-readable summary of the query parameters
"Coverage for states: CA, NY; counties: 06037"
A status code summarizing the outcome of this response.
ok, warning, error "ok"
Array of providers with coverage in the specified areas
Metadata for census geographic coverage response