Documentation navigation
Guides
Getting started Boundary searchAPI reference
Overview Health GET/v1/status Countries GET/v1/countries GET/v1/countries/{code} GET/v1/countries/{code}/regions GET/v1/countries/{code}/neighbors Regions GET/v1/regions GET/v1/regions/{id} GET/v1/regions/{id}/cities GET/v1/regions/{id}/children Cities GET/v1/cities GET/v1/cities/{id} GET/v1/cities/{id}/hierarchy GET/v1/cities/nearby Postal Codes GET/v1/postal-codes GET/v1/postal-codes/nearest Timezones GET/v1/timezones GET/v1/timezones/{tzId} IP Geolocation GET/v1/ip/{address} GET/v1/ip/me Search GET/v1/autocomplete GET/v1/reverse GET/v1/resolve GET/v1/search Boundaries GET/v1/boundaries/{geoname_id} Batch POST/v1/batch/cities POST/v1/batch/countries POST/v1/batch/regionsRegions API
Administrative regions/states/provinces
Authentication: X-API-Key header on every request. Get a key.
Returns a paginated list of regions with optional filtering by country, level, and population.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| lang | string | optional | ISO 639-1 language code for localized names (e.g., de, fr, ja) |
| country | string | optional | Filter by ISO alpha-2 country code |
| level | integer | optional | Filter by administrative level |
| population_min | integer | optional | Minimum population filter |
| population_max | integer | optional | Maximum population filter |
| cursor | string | optional | Pagination cursor from a previous response |
| limit | integer | optional | Number of results per page (1-100, default 25) |
| fields | string | optional | Comma-separated list of fields to include in the response |
| sort | string | optional | Sort field. Allowed: name, population. |
Code samples
Response
{
"data": [
{
"id": 5332921,
"geoname_id": 5332921,
"country_code": "US",
"admin_code": "CA",
"name": "California",
"ascii_name": "California",
"level": 1,
"parent_geoname_id": 6252001,
"population": 39538223,
"latitude": 36.778,
"longitude": -119.418,
"country": {
"iso_code": "US",
"name": "United States"
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
-124.7,
48.4
],
[
-124.6,
48.4
],
[
-124.6,
48.3
],
[
-124.7,
48.4
]
]
]
]
}
}
],
"meta": {
"next_cursor": "eyJpZCI6MjV9",
"prev_cursor": "eyJpZCI6MX0",
"has_next": true,
"has_prev": false,
"count": 25
}
}
Errors
| Status | Code | When |
|---|---|---|
| 400 | validation_error | Invalid request parameters |
| 401 | authentication_required | No API key was supplied |
| 401 | authentication_failed | The supplied API key is not valid |
| 429 | rate_limit_exceeded | Per-second throttle exceeded |
| 429 | quota_exceeded | Monthly quota exhausted |
400 validation_error
{
"error": {
"code": "validation_error",
"message": "Invalid request parameters",
"details": [
{
"field": "population_min",
"issue": "must be a valid integer"
}
],
"request_id": "req_abc123"
}
}
401 authentication_required
{
"error": {
"code": "authentication_required",
"message": "API key required. Get one at /signup",
"request_id": "req_abc123"
}
}
401 authentication_failed
{
"error": {
"code": "authentication_failed",
"message": "Invalid API key",
"request_id": "req_abc123"
}
}
429 rate_limit_exceeded
{
"error": {
"code": "rate_limit_exceeded",
"message": "Rate limit exceeded. Try again later.",
"request_id": "req_abc123"
}
}
429 quota_exceeded
{
"error": {
"code": "quota_exceeded",
"message": "Monthly quota exhausted. You've used 2,000,000 of 2,000,000 requests for the current period, which resets on March 1, 2026. Upgrade for a higher limit.",
"request_id": "req_abc123",
"quota": {
"limit": 2000000,
"used": 2000000,
"resets_at": "2026-03-01T00:00:00Z",
"upgrade_url": "https://geosearch.dev/dashboard/billing"
}
}
}
Returns a single region by its numeric ID.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| id | integer | required | Region ID |
| lang | string | optional | ISO 639-1 language code for localized names (e.g., de, fr, ja) |
| fields | string | optional | Comma-separated list of fields to include in the response |
Code samples
Response
{
"data": {
"id": 5332921,
"geoname_id": 5332921,
"country_code": "US",
"admin_code": "CA",
"name": "California",
"ascii_name": "California",
"level": 1,
"parent_geoname_id": 6252001,
"population": 39538223,
"latitude": 36.778,
"longitude": -119.418,
"country": {
"iso_code": "US",
"name": "United States"
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
-124.7,
48.4
],
[
-124.6,
48.4
],
[
-124.6,
48.3
],
[
-124.7,
48.4
]
]
]
]
}
}
}
Errors
| Status | Code | When |
|---|---|---|
| 400 | validation_error | Invalid request parameters |
| 401 | authentication_required | No API key was supplied |
| 401 | authentication_failed | The supplied API key is not valid |
| 404 | not_found | Resource not found |
| 429 | rate_limit_exceeded | Per-second throttle exceeded |
| 429 | quota_exceeded | Monthly quota exhausted |
400 validation_error
{
"error": {
"code": "validation_error",
"message": "Invalid request parameters",
"details": [
{
"field": "population_min",
"issue": "must be a valid integer"
}
],
"request_id": "req_abc123"
}
}
401 authentication_required
{
"error": {
"code": "authentication_required",
"message": "API key required. Get one at /signup",
"request_id": "req_abc123"
}
}
401 authentication_failed
{
"error": {
"code": "authentication_failed",
"message": "Invalid API key",
"request_id": "req_abc123"
}
}
404 not_found
{
"error": {
"code": "not_found",
"message": "The requested resource was not found",
"request_id": "req_abc123"
}
}
429 rate_limit_exceeded
{
"error": {
"code": "rate_limit_exceeded",
"message": "Rate limit exceeded. Try again later.",
"request_id": "req_abc123"
}
}
429 quota_exceeded
{
"error": {
"code": "quota_exceeded",
"message": "Monthly quota exhausted. You've used 2,000,000 of 2,000,000 requests for the current period, which resets on March 1, 2026. Upgrade for a higher limit.",
"request_id": "req_abc123",
"quota": {
"limit": 2000000,
"used": 2000000,
"resets_at": "2026-03-01T00:00:00Z",
"upgrade_url": "https://geosearch.dev/dashboard/billing"
}
}
}
Returns a paginated list of cities within a specific region.
THIS ENDPOINT AND /v1/cities?within= ANSWER DIFFERENT QUESTIONS AND WILL SOMETIMES RETURN DIFFERENT CITIES FOR THE SAME REGION. That is intended, not a bug. This endpoint answers the ADMINISTRATIVE question — which cities are assigned to this region by GeoNames' own admin codes — while ?within= answers the GEOMETRIC one, which cities fall inside the region's polygon. The two disagree wherever an enclave, an exclave or a blank admin code puts a city's assignment at odds with its location.
Use this endpoint when you want the official assignment; use /v1/cities?within= when you want what is physically inside the boundary. This one is charged at the standard 1 unit; ?within= costs 2.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| id | integer | required | Region ID |
| lang | string | optional | ISO 639-1 language code for localized names (e.g., de, fr, ja) |
| cursor | string | optional | Pagination cursor from a previous response |
| limit | integer | optional | Number of results per page (1-100, default 25) |
| fields | string | optional | Comma-separated list of fields to include in the response |
| sort | string | optional | Sort field. Allowed: name, population. |
Code samples
Response
{
"data": [
{
"id": 5391959,
"geoname_id": 5391959,
"name": "San Francisco",
"ascii_name": "San Francisco",
"country_code": "US",
"admin1_code": "CA",
"admin2_code": "075",
"population": 873965,
"elevation": 16,
"timezone": "America/Los_Angeles",
"latitude": 37.77493,
"longitude": -122.41942,
"country": {
"iso_code": "US",
"name": "United States"
},
"region": {
"id": 5332921,
"name": "California",
"admin_code": "CA"
}
}
],
"meta": {
"next_cursor": "eyJpZCI6MjV9",
"prev_cursor": "eyJpZCI6MX0",
"has_next": true,
"has_prev": false,
"count": 25
}
}
Errors
| Status | Code | When |
|---|---|---|
| 400 | validation_error | Invalid request parameters |
| 401 | authentication_required | No API key was supplied |
| 401 | authentication_failed | The supplied API key is not valid |
| 429 | rate_limit_exceeded | Per-second throttle exceeded |
| 429 | quota_exceeded | Monthly quota exhausted |
400 validation_error
{
"error": {
"code": "validation_error",
"message": "Invalid request parameters",
"details": [
{
"field": "population_min",
"issue": "must be a valid integer"
}
],
"request_id": "req_abc123"
}
}
401 authentication_required
{
"error": {
"code": "authentication_required",
"message": "API key required. Get one at /signup",
"request_id": "req_abc123"
}
}
401 authentication_failed
{
"error": {
"code": "authentication_failed",
"message": "Invalid API key",
"request_id": "req_abc123"
}
}
429 rate_limit_exceeded
{
"error": {
"code": "rate_limit_exceeded",
"message": "Rate limit exceeded. Try again later.",
"request_id": "req_abc123"
}
}
429 quota_exceeded
{
"error": {
"code": "quota_exceeded",
"message": "Monthly quota exhausted. You've used 2,000,000 of 2,000,000 requests for the current period, which resets on March 1, 2026. Upgrade for a higher limit.",
"request_id": "req_abc123",
"quota": {
"limit": 2000000,
"used": 2000000,
"resets_at": "2026-03-01T00:00:00Z",
"upgrade_url": "https://geosearch.dev/dashboard/billing"
}
}
}
Returns all cities that are direct children of the specified region in the administrative hierarchy.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| id | integer | required | Region ID |
| lang | string | optional | ISO 639-1 language code for localized names (e.g., de, fr, ja) |
| fields | string | optional | Comma-separated list of fields to include in the response |
Code samples
Response
{
"data": [
{
"id": 5391959,
"geoname_id": 5391959,
"name": "San Francisco",
"ascii_name": "San Francisco",
"country_code": "US",
"admin1_code": "CA",
"admin2_code": "075",
"population": 873965,
"elevation": 16,
"timezone": "America/Los_Angeles",
"latitude": 37.77493,
"longitude": -122.41942,
"country": {
"iso_code": "US",
"name": "United States"
},
"region": {
"id": 5332921,
"name": "California",
"admin_code": "CA"
}
}
],
"meta": {
"next_cursor": "eyJpZCI6MjV9",
"prev_cursor": "eyJpZCI6MX0",
"has_next": true,
"has_prev": false,
"count": 25
}
}
Errors
| Status | Code | When |
|---|---|---|
| 401 | authentication_required | No API key was supplied |
| 401 | authentication_failed | The supplied API key is not valid |
| 404 | not_found | Resource not found |
| 429 | rate_limit_exceeded | Per-second throttle exceeded |
| 429 | quota_exceeded | Monthly quota exhausted |
401 authentication_required
{
"error": {
"code": "authentication_required",
"message": "API key required. Get one at /signup",
"request_id": "req_abc123"
}
}
401 authentication_failed
{
"error": {
"code": "authentication_failed",
"message": "Invalid API key",
"request_id": "req_abc123"
}
}
404 not_found
{
"error": {
"code": "not_found",
"message": "The requested resource was not found",
"request_id": "req_abc123"
}
}
429 rate_limit_exceeded
{
"error": {
"code": "rate_limit_exceeded",
"message": "Rate limit exceeded. Try again later.",
"request_id": "req_abc123"
}
}
429 quota_exceeded
{
"error": {
"code": "quota_exceeded",
"message": "Monthly quota exhausted. You've used 2,000,000 of 2,000,000 requests for the current period, which resets on March 1, 2026. Upgrade for a higher limit.",
"request_id": "req_abc123",
"quota": {
"limit": 2000000,
"used": 2000000,
"resets_at": "2026-03-01T00:00:00Z",
"upgrade_url": "https://geosearch.dev/dashboard/billing"
}
}
}