Download OpenAPI specification:Download
The GeoDB API focuses on getting global places and regions. Easily obtain country, region, and place data for use in your apps!
Notes:
Find administrative divisions, filtering by optional criteria. If no criteria are set, you will get back all known divisions.
location | string Only places near this location. Latitude/longitude in ISO-6709 format: ±DD.DDDD±DDD.DDDD |
radius | integer <int32> The location radius within which to find places |
distanceUnit | string Default: "MI" The unit of distance: MI | KM |
countryIds | string Only places in these countries (comma-delimited country codes or WikiData ids) |
excludedCountryIds | string Only places NOT in these countries (comma-delimited country codes or WikiData ids) |
minPopulation | integer <int32> Only places having at least this population |
maxPopulation | integer <int32> Only places having no more than this population |
namePrefix | string Only entities whose names start with this prefix. If languageCode is set, the prefix will be matched on the name as it appears in that language. |
namePrefixDefaultLangResults | boolean Default: true When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set. |
timeZoneIds | string Only places in these time-zones (comma-delimited) |
asciiMode | boolean Default: false Display results using ASCII characters |
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
languageCode | string Display results in this language |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
sort | string How to sort places. Format: ±SORT_FIELD,±SORT_FIELD where SORT_FIELD = countryCode | elevation | name | population |
includeDeleted | string Default: "NONE" Whether to include any divisions marked deleted: ALL | SINCE_YESTERDAY | SINCE_LAST_WEEK | NONE |
{- "data": [
- {
- "id": 2987553,
- "wikiDataId": "Q24371",
- "type": "CITY",
- "name": "L'Aldosa de Canillo",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Canillo",
- "regionCode": 2,
- "latitude": 42.57777778,
- "longitude": 1.61944444
}, - {
- "id": 3086756,
- "wikiDataId": "Q24486",
- "type": "CITY",
- "name": "La Cortinada",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Ordino",
- "regionCode": 5,
- "latitude": 42.57667,
- "longitude": 1.51773
}, - {
- "id": 3056764,
- "wikiDataId": "Q2536296",
- "type": "CITY",
- "name": "La Margineda",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Andorra la Vella",
- "regionCode": 7,
- "latitude": 42.4859,
- "longitude": 1.49045
}, - {
- "id": 978,
- "wikiDataId": "Q3820973",
- "type": "CITY",
- "name": "La Massana",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "La Massana",
- "regionCode": 4,
- "latitude": 42.544354,
- "longitude": 1.515427
}, - {
- "id": 759,
- "wikiDataId": "Q1050185",
- "type": "CITY",
- "name": "Les Escaldes",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Escaldes-Engordany",
- "regionCode": "08",
- "latitude": 42.5,
- "longitude": 1.53333333
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/geo/cities?offset=10&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/geo/cities?offset=273685&limit=5"
}
], - "metadata": {
- "currentOffset": 5,
- "totalCount": 273690
}
}
Get administrative division details such as location coordinates, population, and elevation above sea-level (if available).
divisionId required | string An admin-division id (either native 'id' or 'wikiDataId') |
asciiMode | boolean Default: false Display results using ASCII characters |
languageCode | string Display results in this language |
{- "data": {
- "id": 123214,
- "wikiDataId": "Q60",
- "type": "CITY",
- "name": "New York City",
- "country": "United States of America",
- "countryCode": "US",
- "region": "New York",
- "regionCode": "NY",
- "elevationMeters": 10,
- "latitude": 40.67,
- "longitude": -73.94,
- "population": 8398748,
- "timezone": "America__New_York",
- "deleted": false
}
}
Find cities near the given administrative division, filtering by optional criteria. If no criteria are set, you will get back all known cities.
divisionId required | string An admin-division id (either native 'id' or 'wikiDataId') |
radius | integer <int32> The location radius within which to find places |
distanceUnit | string Default: "MI" The unit of distance: MI | KM |
countryIds | string Only places in these countries (comma-delimited country codes or WikiData ids) |
excludedCountryIds | string Only places NOT in these countries (comma-delimited country codes or WikiData ids) |
minPopulation | integer <int32> Only places having at least this population |
maxPopulation | integer <int32> Only places having no more than this population |
namePrefix | string Only entities whose names start with this prefix. If languageCode is set, the prefix will be matched on the name as it appears in that language. |
namePrefixDefaultLangResults | boolean Default: true When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set. |
timeZoneIds | string Only places in these time-zones (comma-delimited) |
types | string Only cities for these types (comma-delimited): ADM2 | CITY |
asciiMode | boolean Default: false Display results using ASCII characters |
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
languageCode | string Display results in this language |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
sort | string How to sort places. Format: ±SORT_FIELD,±SORT_FIELD where SORT_FIELD = countryCode | elevation | name | population |
includeDeleted | string Default: "NONE" Whether to include any divisions marked deleted: ALL | SINCE_YESTERDAY | SINCE_LAST_WEEK | NONE |
{- "data": [
- {
- "id": 2987553,
- "wikiDataId": "Q24371",
- "type": "CITY",
- "name": "L'Aldosa de Canillo",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Canillo",
- "regionCode": 2,
- "latitude": 42.57777778,
- "longitude": 1.61944444
}, - {
- "id": 3086756,
- "wikiDataId": "Q24486",
- "type": "CITY",
- "name": "La Cortinada",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Ordino",
- "regionCode": 5,
- "latitude": 42.57667,
- "longitude": 1.51773
}, - {
- "id": 3056764,
- "wikiDataId": "Q2536296",
- "type": "CITY",
- "name": "La Margineda",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Andorra la Vella",
- "regionCode": 7,
- "latitude": 42.4859,
- "longitude": 1.49045
}, - {
- "id": 978,
- "wikiDataId": "Q3820973",
- "type": "CITY",
- "name": "La Massana",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "La Massana",
- "regionCode": 4,
- "latitude": 42.544354,
- "longitude": 1.515427
}, - {
- "id": 759,
- "wikiDataId": "Q1050185",
- "type": "CITY",
- "name": "Les Escaldes",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Escaldes-Engordany",
- "regionCode": "08",
- "latitude": 42.5,
- "longitude": 1.53333333
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/geo/cities?offset=10&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/geo/cities?offset=273685&limit=5"
}
], - "metadata": {
- "currentOffset": 5,
- "totalCount": 273690
}
}
Find administrative divisions near the given division, filtering by optional criteria. If no criteria are set, you will get back all known divisions.
divisionId required | string An admin-division id (either native 'id' or 'wikiDataId') |
radius | integer <int32> The location radius within which to find places |
distanceUnit | string Default: "MI" The unit of distance: MI | KM |
countryIds | string Only places in these countries (comma-delimited country codes or WikiData ids) |
excludedCountryIds | string Only places NOT in these countries (comma-delimited country codes or WikiData ids) |
minPopulation | integer <int32> Only places having at least this population |
maxPopulation | integer <int32> Only places having no more than this population |
namePrefix | string Only entities whose names start with this prefix. If languageCode is set, the prefix will be matched on the name as it appears in that language. |
namePrefixDefaultLangResults | boolean Default: true When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set. |
timeZoneIds | string Only places in these time-zones (comma-delimited) |
asciiMode | boolean Default: false Display results using ASCII characters |
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
languageCode | string Display results in this language |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
sort | string How to sort places. Format: ±SORT_FIELD,±SORT_FIELD where SORT_FIELD = countryCode | elevation | name | population |
includeDeleted | string Default: "NONE" Whether to include any divisions marked deleted: ALL | SINCE_YESTERDAY | SINCE_LAST_WEEK | NONE |
{- "data": [
- {
- "id": 2987553,
- "wikiDataId": "Q24371",
- "type": "CITY",
- "name": "L'Aldosa de Canillo",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Canillo",
- "regionCode": 2,
- "latitude": 42.57777778,
- "longitude": 1.61944444
}, - {
- "id": 3086756,
- "wikiDataId": "Q24486",
- "type": "CITY",
- "name": "La Cortinada",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Ordino",
- "regionCode": 5,
- "latitude": 42.57667,
- "longitude": 1.51773
}, - {
- "id": 3056764,
- "wikiDataId": "Q2536296",
- "type": "CITY",
- "name": "La Margineda",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Andorra la Vella",
- "regionCode": 7,
- "latitude": 42.4859,
- "longitude": 1.49045
}, - {
- "id": 978,
- "wikiDataId": "Q3820973",
- "type": "CITY",
- "name": "La Massana",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "La Massana",
- "regionCode": 4,
- "latitude": 42.544354,
- "longitude": 1.515427
}, - {
- "id": 759,
- "wikiDataId": "Q1050185",
- "type": "CITY",
- "name": "Les Escaldes",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Escaldes-Engordany",
- "regionCode": "08",
- "latitude": 42.5,
- "longitude": 1.53333333
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/geo/cities?offset=10&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/geo/cities?offset=273685&limit=5"
}
], - "metadata": {
- "currentOffset": 5,
- "totalCount": 273690
}
}
Find places near the given administrative division, filtering by optional criteria. If no criteria are set, you will get back all known places.
divisionId required | string An admin-division id (either native 'id' or 'wikiDataId') |
radius | integer <int32> The location radius within which to find places |
distanceUnit | string Default: "MI" The unit of distance: MI | KM |
countryIds | string Only places in these countries (comma-delimited country codes or WikiData ids) |
excludedCountryIds | string Only places NOT in these countries (comma-delimited country codes or WikiData ids) |
minPopulation | integer <int32> Only places having at least this population |
maxPopulation | integer <int32> Only places having no more than this population |
namePrefix | string Only entities whose names start with this prefix. If languageCode is set, the prefix will be matched on the name as it appears in that language. |
namePrefixDefaultLangResults | boolean Default: true When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set. |
timeZoneIds | string Only places in these time-zones (comma-delimited) |
types | string Only places for these types (comma-delimited): ADM2 | CITY | ISLAND |
asciiMode | boolean Default: false Display results using ASCII characters |
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
languageCode | string Display results in this language |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
sort | string How to sort places. Format: ±SORT_FIELD,±SORT_FIELD where SORT_FIELD = countryCode | elevation | name | population |
includeDeleted | string Default: "NONE" Whether to include any divisions marked deleted: ALL | SINCE_YESTERDAY | SINCE_LAST_WEEK | NONE |
{- "data": [
- {
- "id": 2987553,
- "wikiDataId": "Q24371",
- "type": "CITY",
- "name": "L'Aldosa de Canillo",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Canillo",
- "regionCode": 2,
- "latitude": 42.57777778,
- "longitude": 1.61944444
}, - {
- "id": 3086756,
- "wikiDataId": "Q24486",
- "type": "CITY",
- "name": "La Cortinada",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Ordino",
- "regionCode": 5,
- "latitude": 42.57667,
- "longitude": 1.51773
}, - {
- "id": 3056764,
- "wikiDataId": "Q2536296",
- "type": "CITY",
- "name": "La Margineda",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Andorra la Vella",
- "regionCode": 7,
- "latitude": 42.4859,
- "longitude": 1.49045
}, - {
- "id": 978,
- "wikiDataId": "Q3820973",
- "type": "CITY",
- "name": "La Massana",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "La Massana",
- "regionCode": 4,
- "latitude": 42.544354,
- "longitude": 1.515427
}, - {
- "id": 759,
- "wikiDataId": "Q1050185",
- "type": "CITY",
- "name": "Les Escaldes",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Escaldes-Engordany",
- "regionCode": "08",
- "latitude": 42.5,
- "longitude": 1.53333333
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/geo/cities?offset=10&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/geo/cities?offset=273685&limit=5"
}
], - "metadata": {
- "currentOffset": 5,
- "totalCount": 273690
}
}
Find cities, filtering by optional criteria. If no criteria are set, you will get back all known cities.
location | string Only places near this location. Latitude/longitude in ISO-6709 format: ±DD.DDDD±DDD.DDDD |
radius | integer <int32> The location radius within which to find places |
distanceUnit | string Default: "MI" The unit of distance: MI | KM |
countryIds | string Only places in these countries (comma-delimited country codes or WikiData ids) |
excludedCountryIds | string Only places NOT in these countries (comma-delimited country codes or WikiData ids) |
minPopulation | integer <int32> Only places having at least this population |
maxPopulation | integer <int32> Only places having no more than this population |
namePrefix | string Only entities whose names start with this prefix. If languageCode is set, the prefix will be matched on the name as it appears in that language. |
namePrefixDefaultLangResults | boolean Default: true When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set. |
timeZoneIds | string Only places in these time-zones (comma-delimited) |
types | string Only cities for these types (comma-delimited): ADM2 | CITY |
asciiMode | boolean Default: false Display results using ASCII characters |
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
languageCode | string Display results in this language |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
sort | string How to sort places. Format: ±SORT_FIELD,±SORT_FIELD where SORT_FIELD = countryCode | elevation | name | population |
includeDeleted | string Default: "NONE" Whether to include any divisions marked deleted: ALL | SINCE_YESTERDAY | SINCE_LAST_WEEK | NONE |
{- "data": [
- {
- "id": 2987553,
- "wikiDataId": "Q24371",
- "type": "CITY",
- "name": "L'Aldosa de Canillo",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Canillo",
- "regionCode": 2,
- "latitude": 42.57777778,
- "longitude": 1.61944444
}, - {
- "id": 3086756,
- "wikiDataId": "Q24486",
- "type": "CITY",
- "name": "La Cortinada",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Ordino",
- "regionCode": 5,
- "latitude": 42.57667,
- "longitude": 1.51773
}, - {
- "id": 3056764,
- "wikiDataId": "Q2536296",
- "type": "CITY",
- "name": "La Margineda",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Andorra la Vella",
- "regionCode": 7,
- "latitude": 42.4859,
- "longitude": 1.49045
}, - {
- "id": 978,
- "wikiDataId": "Q3820973",
- "type": "CITY",
- "name": "La Massana",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "La Massana",
- "regionCode": 4,
- "latitude": 42.544354,
- "longitude": 1.515427
}, - {
- "id": 759,
- "wikiDataId": "Q1050185",
- "type": "CITY",
- "name": "Les Escaldes",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Escaldes-Engordany",
- "regionCode": "08",
- "latitude": 42.5,
- "longitude": 1.53333333
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/geo/cities?offset=10&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/geo/cities?offset=273685&limit=5"
}
], - "metadata": {
- "currentOffset": 5,
- "totalCount": 273690
}
}
Find cities near the given city, filtering by optional criteria. If no criteria are set, you will get back all cities within the default radius.
cityId required | string A city id (either native 'id' or 'wikiDataId') |
radius | integer <int32> The location radius within which to find places |
distanceUnit | string Default: "MI" The unit of distance: MI | KM |
countryIds | string Only places in these countries (comma-delimited country codes or WikiData ids) |
excludedCountryIds | string Only places NOT in these countries (comma-delimited country codes or WikiData ids) |
minPopulation | integer <int32> Only places having at least this population |
maxPopulation | integer <int32> Only places having no more than this population |
namePrefix | string Only entities whose names start with this prefix. If languageCode is set, the prefix will be matched on the name as it appears in that language. |
namePrefixDefaultLangResults | boolean Default: true When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set. |
timeZoneIds | string Only places in these time-zones (comma-delimited) |
types | string Only cities for these types (comma-delimited): ADM2 | CITY |
asciiMode | boolean Default: false Display results using ASCII characters |
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
languageCode | string Display results in this language |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
sort | string How to sort places. Format: ±SORT_FIELD,±SORT_FIELD where SORT_FIELD = countryCode | elevation | name | population |
includeDeleted | string Default: "NONE" Whether to include any divisions marked deleted: ALL | SINCE_YESTERDAY | SINCE_LAST_WEEK | NONE |
{- "data": [
- {
- "id": 2987553,
- "wikiDataId": "Q24371",
- "type": "CITY",
- "name": "L'Aldosa de Canillo",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Canillo",
- "regionCode": 2,
- "latitude": 42.57777778,
- "longitude": 1.61944444
}, - {
- "id": 3086756,
- "wikiDataId": "Q24486",
- "type": "CITY",
- "name": "La Cortinada",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Ordino",
- "regionCode": 5,
- "latitude": 42.57667,
- "longitude": 1.51773
}, - {
- "id": 3056764,
- "wikiDataId": "Q2536296",
- "type": "CITY",
- "name": "La Margineda",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Andorra la Vella",
- "regionCode": 7,
- "latitude": 42.4859,
- "longitude": 1.49045
}, - {
- "id": 978,
- "wikiDataId": "Q3820973",
- "type": "CITY",
- "name": "La Massana",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "La Massana",
- "regionCode": 4,
- "latitude": 42.544354,
- "longitude": 1.515427
}, - {
- "id": 759,
- "wikiDataId": "Q1050185",
- "type": "CITY",
- "name": "Les Escaldes",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Escaldes-Engordany",
- "regionCode": "08",
- "latitude": 42.5,
- "longitude": 1.53333333
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/geo/cities?offset=10&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/geo/cities?offset=273685&limit=5"
}
], - "metadata": {
- "currentOffset": 5,
- "totalCount": 273690
}
}
Find administrative divisions near the given city, filtering by optional criteria. If no criteria are set, you will get back all divisions within the default radius.
cityId required | string A city id (either native 'id' or 'wikiDataId') |
radius | integer <int32> The location radius within which to find places |
distanceUnit | string Default: "MI" The unit of distance: MI | KM |
countryIds | string Only places in these countries (comma-delimited country codes or WikiData ids) |
excludedCountryIds | string Only places NOT in these countries (comma-delimited country codes or WikiData ids) |
minPopulation | integer <int32> Only places having at least this population |
maxPopulation | integer <int32> Only places having no more than this population |
namePrefix | string Only entities whose names start with this prefix. If languageCode is set, the prefix will be matched on the name as it appears in that language. |
namePrefixDefaultLangResults | boolean Default: true When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set. |
timeZoneIds | string Only places in these time-zones (comma-delimited) |
asciiMode | boolean Default: false Display results using ASCII characters |
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
languageCode | string Display results in this language |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
sort | string How to sort places. Format: ±SORT_FIELD,±SORT_FIELD where SORT_FIELD = countryCode | elevation | name | population |
includeDeleted | string Default: "NONE" Whether to include any divisions marked deleted: ALL | SINCE_YESTERDAY | SINCE_LAST_WEEK | NONE |
{- "data": [
- {
- "id": 2987553,
- "wikiDataId": "Q24371",
- "type": "CITY",
- "name": "L'Aldosa de Canillo",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Canillo",
- "regionCode": 2,
- "latitude": 42.57777778,
- "longitude": 1.61944444
}, - {
- "id": 3086756,
- "wikiDataId": "Q24486",
- "type": "CITY",
- "name": "La Cortinada",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Ordino",
- "regionCode": 5,
- "latitude": 42.57667,
- "longitude": 1.51773
}, - {
- "id": 3056764,
- "wikiDataId": "Q2536296",
- "type": "CITY",
- "name": "La Margineda",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Andorra la Vella",
- "regionCode": 7,
- "latitude": 42.4859,
- "longitude": 1.49045
}, - {
- "id": 978,
- "wikiDataId": "Q3820973",
- "type": "CITY",
- "name": "La Massana",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "La Massana",
- "regionCode": 4,
- "latitude": 42.544354,
- "longitude": 1.515427
}, - {
- "id": 759,
- "wikiDataId": "Q1050185",
- "type": "CITY",
- "name": "Les Escaldes",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Escaldes-Engordany",
- "regionCode": "08",
- "latitude": 42.5,
- "longitude": 1.53333333
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/geo/cities?offset=10&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/geo/cities?offset=273685&limit=5"
}
], - "metadata": {
- "currentOffset": 5,
- "totalCount": 273690
}
}
Find places near the given city, filtering by optional criteria. If no criteria are set, you will get back all places within the default radius.
cityId required | string A city id (either native 'id' or 'wikiDataId') |
radius | integer <int32> The location radius within which to find places |
distanceUnit | string Default: "MI" The unit of distance: MI | KM |
countryIds | string Only places in these countries (comma-delimited country codes or WikiData ids) |
excludedCountryIds | string Only places NOT in these countries (comma-delimited country codes or WikiData ids) |
minPopulation | integer <int32> Only places having at least this population |
maxPopulation | integer <int32> Only places having no more than this population |
namePrefix | string Only entities whose names start with this prefix. If languageCode is set, the prefix will be matched on the name as it appears in that language. |
namePrefixDefaultLangResults | boolean Default: true When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set. |
timeZoneIds | string Only places in these time-zones (comma-delimited) |
types | string Only places for these types (comma-delimited): ADM2 | CITY | ISLAND |
asciiMode | boolean Default: false Display results using ASCII characters |
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
languageCode | string Display results in this language |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
sort | string How to sort places. Format: ±SORT_FIELD,±SORT_FIELD where SORT_FIELD = countryCode | elevation | name | population |
includeDeleted | string Default: "NONE" Whether to include any divisions marked deleted: ALL | SINCE_YESTERDAY | SINCE_LAST_WEEK | NONE |
{- "data": [
- {
- "id": 2987553,
- "wikiDataId": "Q24371",
- "type": "CITY",
- "name": "L'Aldosa de Canillo",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Canillo",
- "regionCode": 2,
- "latitude": 42.57777778,
- "longitude": 1.61944444
}, - {
- "id": 3086756,
- "wikiDataId": "Q24486",
- "type": "CITY",
- "name": "La Cortinada",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Ordino",
- "regionCode": 5,
- "latitude": 42.57667,
- "longitude": 1.51773
}, - {
- "id": 3056764,
- "wikiDataId": "Q2536296",
- "type": "CITY",
- "name": "La Margineda",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Andorra la Vella",
- "regionCode": 7,
- "latitude": 42.4859,
- "longitude": 1.49045
}, - {
- "id": 978,
- "wikiDataId": "Q3820973",
- "type": "CITY",
- "name": "La Massana",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "La Massana",
- "regionCode": 4,
- "latitude": 42.544354,
- "longitude": 1.515427
}, - {
- "id": 759,
- "wikiDataId": "Q1050185",
- "type": "CITY",
- "name": "Les Escaldes",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Escaldes-Engordany",
- "regionCode": "08",
- "latitude": 42.5,
- "longitude": 1.53333333
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/geo/cities?offset=10&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/geo/cities?offset=273685&limit=5"
}
], - "metadata": {
- "currentOffset": 5,
- "totalCount": 273690
}
}
Get city details such as location coordinates, population, and elevation above sea-level (if available).
cityId required | string A city id (either native 'id' or 'wikiDataId') |
asciiMode | boolean Default: false Display results using ASCII characters |
languageCode | string Display results in this language |
{- "data": {
- "id": 123214,
- "wikiDataId": "Q60",
- "type": "CITY",
- "name": "New York City",
- "country": "United States of America",
- "countryCode": "US",
- "region": "New York",
- "regionCode": "NY",
- "elevationMeters": 10,
- "latitude": 40.67,
- "longitude": -73.94,
- "population": 8398748,
- "timezone": "America__New_York",
- "deleted": false
}
}
Get distance from the given city
cityId required | string A city id (either native 'id' or 'wikiDataId') |
toCityId required | string Distance to this city |
distanceUnit | string Default: "MI" The unit of distance: MI | KM |
{- "data": 6707.9
}
Get the details for the containing populated place (e.g., its county or other administrative division), including location coordinates, population, and elevation above sea-level (if available).
cityId required | string A city id (either native 'id' or 'wikiDataId') |
asciiMode | boolean Default: false Display results using ASCII characters |
languageCode | string Display results in this language |
{- "data": {
- "id": 123214,
- "wikiDataId": "Q60",
- "type": "CITY",
- "name": "New York City",
- "country": "United States of America",
- "countryCode": "US",
- "region": "New York",
- "regionCode": "NY",
- "elevationMeters": 10,
- "latitude": 40.67,
- "longitude": -73.94,
- "population": 8398748,
- "timezone": "America__New_York",
- "deleted": false
}
}
Find countries, filtering by optional criteria. If no criteria are set, you will get back all known countries.
currencyCode | string Only countries supporting this currency |
namePrefix | string Only entities whose names start with this prefix. If languageCode is set, the prefix will be matched on the name as it appears in that language. |
namePrefixDefaultLangResults | boolean Default: true When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set. |
asciiMode | boolean Default: false Display results using ASCII characters |
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
languageCode | string Display results in this language |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
sort | string How to sort countries. Format: ±SORT_FIELD where SORT_FIELD = code | name |
{- "data": [
- {
- "code": "SM",
- "currencyCodes": [
- "EUR"
], - "name": "San Marino",
- "wikiDataId": "Q238"
}, - {
- "code": "NE",
- "currencyCodes": [
- "XOF"
], - "name": "Niger",
- "wikiDataId": "Q1032"
}, - {
- "code": "MT",
- "currencyCodes": [
- "EUR"
], - "name": "Malta",
- "wikiDataId": "Q233"
}, - {
- "code": "KZ",
- "currencyCodes": [
- "KZT"
], - "name": "Kazakhstan",
- "wikiDataId": "Q232"
}, - {
- "code": "KE",
- "currencyCodes": [
- "KES"
], - "name": "Kenya",
- "wikiDataId": "Q114"
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/geo/countries?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/geo/countries?offset=0&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/geo/countries?offset=10&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/geo/countries?offset=195&limit=5"
}
], - "metadata": {
- "currentOffset": 5,
- "totalCount": 198
}
}
Get country details such as number of regions.
countryId required | string An ISO-3166 country code or WikiData id |
asciiMode | boolean Default: false Display results using ASCII characters |
languageCode | string Display results in this language |
{- "data": {
- "code": "US",
- "callingCode": "+1",
- "currencyCodes": [
- "USD"
], - "name": "United States",
- "numRegions": 56,
- "wikiDataId": "Q30"
}
}
Get the country's places. The country is omitted in the response.
countryId required | string An ISO-3166 country code or WikiData id |
minPopulation | integer <int32> Only places having at least this population |
maxPopulation | integer <int32> Only places having no more than this population |
namePrefix | string Only entities whose names start with this prefix. If languageCode is set, the prefix will be matched on the name as it appears in that language. |
namePrefixDefaultLangResults | boolean Default: true When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set. |
timeZoneIds | string Only places in these time-zones (comma-delimited) |
types | string Only places for these types (comma-delimited): ADM2 | CITY | ISLAND |
asciiMode | boolean Default: false Display results using ASCII characters |
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
languageCode | string Display results in this language |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
sort | string How to sort place results. 'Format: ±SORT_FIELD,±SORT_FIELD' where SORT_FIELD = elevation | name | population |
includeDeleted | string Default: "NONE" Whether to include any divisions marked deleted: ALL | SINCE_YESTERDAY | SINCE_LAST_WEEK | NONE |
{- "data": [
- {
- "id": 2987553,
- "wikiDataId": "Q24371",
- "type": "CITY",
- "name": "L'Aldosa de Canillo",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Canillo",
- "regionCode": 2,
- "latitude": 42.57777778,
- "longitude": 1.61944444
}, - {
- "id": 3086756,
- "wikiDataId": "Q24486",
- "type": "CITY",
- "name": "La Cortinada",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Ordino",
- "regionCode": 5,
- "latitude": 42.57667,
- "longitude": 1.51773
}, - {
- "id": 3056764,
- "wikiDataId": "Q2536296",
- "type": "CITY",
- "name": "La Margineda",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Andorra la Vella",
- "regionCode": 7,
- "latitude": 42.4859,
- "longitude": 1.49045
}, - {
- "id": 978,
- "wikiDataId": "Q3820973",
- "type": "CITY",
- "name": "La Massana",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "La Massana",
- "regionCode": 4,
- "latitude": 42.544354,
- "longitude": 1.515427
}, - {
- "id": 759,
- "wikiDataId": "Q1050185",
- "type": "CITY",
- "name": "Les Escaldes",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Escaldes-Engordany",
- "regionCode": "08",
- "latitude": 42.5,
- "longitude": 1.53333333
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/geo/cities?offset=10&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/geo/cities?offset=273685&limit=5"
}
], - "metadata": {
- "currentOffset": 5,
- "totalCount": 273690
}
}
Get the country's regions. These could be states, provinces, districts, or otherwise major political divisions.
countryId required | string An ISO-3166 country code or WikiData id |
namePrefix | string Only entities whose names start with this prefix. If languageCode is set, the prefix will be matched on the name as it appears in that language. |
namePrefixDefaultLangResults | boolean Default: true When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set. |
asciiMode | boolean Default: false Display results using ASCII characters |
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
languageCode | string Display results in this language |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
sort | string How to sort regions. Format: ±SORT_FIELD where SORT_FIELD = fipsCode | isoCode | name |
{- "data": [
- {
- "wikiDataId": "Q1439",
- "fipsCode": 48,
- "isoCode": "TX",
- "name": "Texas",
- "countryCode": "US"
}, - {
- "wikiDataId": "Q1397",
- "fipsCode": 39,
- "isoCode": "OH",
- "name": "Ohio",
- "countryCode": "US"
}, - {
- "wikiDataId": "Q1553",
- "fipsCode": 31,
- "isoCode": "NE",
- "name": "Nebraska",
- "countryCode": "US"
}, - {
- "wikiDataId": "Q16551",
- "fipsCode": 50,
- "isoCode": "VT",
- "name": "Vermont",
- "countryCode": "US"
}, - {
- "wikiDataId": "Q782",
- "fipsCode": 15,
- "isoCode": "HI",
- "name": "Hawaii",
- "countryCode": "US"
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/geo/countries/US/regions?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/geo/countries/US/regions?offset=0&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/geo/countries/US/regions?offset=10&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/geo/countries/US/regions?offset=55&limit=5"
}
], - "metadata": {
- "currentOffset": 5,
- "totalCount": 56
}
}
Get country region details such as number of cities.
countryId required | string An ISO-3166 country code or WikiData id |
regionCode required | string An ISO-3166 or FIPS region code |
asciiMode | boolean Default: false Display results using ASCII characters |
languageCode | string Display results in this language |
{- "data": {
- "capital": "Sacramento",
- "countryCode": "US",
- "fipsCode": 6,
- "isoCode": "CA",
- "name": "California",
- "numCities": 1532,
- "wikiDataId": "Q99"
}
}
Get country region administrative divisions. The country and region info is omitted in the response.
countryId required | string An ISO-3166 country code or WikiData id |
regionCode required | string An ISO-3166 or FIPS region code |
minPopulation | integer <int32> Only places having at least this population |
maxPopulation | integer <int32> Only places having no more than this population |
namePrefix | string Only entities whose names start with this prefix. If languageCode is set, the prefix will be matched on the name as it appears in that language. |
namePrefixDefaultLangResults | boolean Default: true When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set. |
timeZoneIds | string Only places in these time-zones (comma-delimited) |
asciiMode | boolean Default: false Display results using ASCII characters |
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
languageCode | string Display results in this language |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
sort | string How to sort place results. 'Format: ±SORT_FIELD,±SORT_FIELD' where SORT_FIELD = elevation | name | population |
includeDeleted | string Default: "NONE" Whether to include any divisions marked deleted: ALL | SINCE_YESTERDAY | SINCE_LAST_WEEK | NONE |
{- "data": [
- {
- "id": 2987553,
- "wikiDataId": "Q24371",
- "type": "CITY",
- "name": "L'Aldosa de Canillo",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Canillo",
- "regionCode": 2,
- "latitude": 42.57777778,
- "longitude": 1.61944444
}, - {
- "id": 3086756,
- "wikiDataId": "Q24486",
- "type": "CITY",
- "name": "La Cortinada",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Ordino",
- "regionCode": 5,
- "latitude": 42.57667,
- "longitude": 1.51773
}, - {
- "id": 3056764,
- "wikiDataId": "Q2536296",
- "type": "CITY",
- "name": "La Margineda",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Andorra la Vella",
- "regionCode": 7,
- "latitude": 42.4859,
- "longitude": 1.49045
}, - {
- "id": 978,
- "wikiDataId": "Q3820973",
- "type": "CITY",
- "name": "La Massana",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "La Massana",
- "regionCode": 4,
- "latitude": 42.544354,
- "longitude": 1.515427
}, - {
- "id": 759,
- "wikiDataId": "Q1050185",
- "type": "CITY",
- "name": "Les Escaldes",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Escaldes-Engordany",
- "regionCode": "08",
- "latitude": 42.5,
- "longitude": 1.53333333
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/geo/cities?offset=10&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/geo/cities?offset=273685&limit=5"
}
], - "metadata": {
- "currentOffset": 5,
- "totalCount": 273690
}
}
Get country region cities. The country and region info is omitted in the response.
countryId required | string An ISO-3166 country code or WikiData id |
regionCode required | string An ISO-3166 or FIPS region code |
minPopulation | integer <int32> Only places having at least this population |
maxPopulation | integer <int32> Only places having no more than this population |
namePrefix | string Only entities whose names start with this prefix. If languageCode is set, the prefix will be matched on the name as it appears in that language. |
namePrefixDefaultLangResults | boolean Default: true When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set. |
timeZoneIds | string Only places in these time-zones (comma-delimited) |
types | string Only cities for these types (comma-delimited): ADM2 | CITY |
asciiMode | boolean Default: false Display results using ASCII characters |
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
languageCode | string Display results in this language |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
sort | string How to sort place results. 'Format: ±SORT_FIELD,±SORT_FIELD' where SORT_FIELD = elevation | name | population |
includeDeleted | string Default: "NONE" Whether to include any divisions marked deleted: ALL | SINCE_YESTERDAY | SINCE_LAST_WEEK | NONE |
{- "data": [
- {
- "id": 2987553,
- "wikiDataId": "Q24371",
- "type": "CITY",
- "name": "L'Aldosa de Canillo",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Canillo",
- "regionCode": 2,
- "latitude": 42.57777778,
- "longitude": 1.61944444
}, - {
- "id": 3086756,
- "wikiDataId": "Q24486",
- "type": "CITY",
- "name": "La Cortinada",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Ordino",
- "regionCode": 5,
- "latitude": 42.57667,
- "longitude": 1.51773
}, - {
- "id": 3056764,
- "wikiDataId": "Q2536296",
- "type": "CITY",
- "name": "La Margineda",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Andorra la Vella",
- "regionCode": 7,
- "latitude": 42.4859,
- "longitude": 1.49045
}, - {
- "id": 978,
- "wikiDataId": "Q3820973",
- "type": "CITY",
- "name": "La Massana",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "La Massana",
- "regionCode": 4,
- "latitude": 42.544354,
- "longitude": 1.515427
}, - {
- "id": 759,
- "wikiDataId": "Q1050185",
- "type": "CITY",
- "name": "Les Escaldes",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Escaldes-Engordany",
- "regionCode": "08",
- "latitude": 42.5,
- "longitude": 1.53333333
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/geo/cities?offset=10&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/geo/cities?offset=273685&limit=5"
}
], - "metadata": {
- "currentOffset": 5,
- "totalCount": 273690
}
}
Get country region places. The country and region info is omitted in the response.
countryId required | string An ISO-3166 country code or WikiData id |
regionCode required | string An ISO-3166 or FIPS region code |
minPopulation | integer <int32> Only places having at least this population |
maxPopulation | integer <int32> Only places having no more than this population |
namePrefix | string Only entities whose names start with this prefix. If languageCode is set, the prefix will be matched on the name as it appears in that language. |
namePrefixDefaultLangResults | boolean Default: true When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set. |
timeZoneIds | string Only places in these time-zones (comma-delimited) |
types | string Only places for these types (comma-delimited): ADM2 | CITY | ISLAND |
asciiMode | boolean Default: false Display results using ASCII characters |
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
languageCode | string Display results in this language |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
sort | string How to sort place results. 'Format: ±SORT_FIELD,±SORT_FIELD' where SORT_FIELD = elevation | name | population |
includeDeleted | string Default: "NONE" Whether to include any divisions marked deleted: ALL | SINCE_YESTERDAY | SINCE_LAST_WEEK | NONE |
{- "data": [
- {
- "id": 2987553,
- "wikiDataId": "Q24371",
- "type": "CITY",
- "name": "L'Aldosa de Canillo",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Canillo",
- "regionCode": 2,
- "latitude": 42.57777778,
- "longitude": 1.61944444
}, - {
- "id": 3086756,
- "wikiDataId": "Q24486",
- "type": "CITY",
- "name": "La Cortinada",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Ordino",
- "regionCode": 5,
- "latitude": 42.57667,
- "longitude": 1.51773
}, - {
- "id": 3056764,
- "wikiDataId": "Q2536296",
- "type": "CITY",
- "name": "La Margineda",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Andorra la Vella",
- "regionCode": 7,
- "latitude": 42.4859,
- "longitude": 1.49045
}, - {
- "id": 978,
- "wikiDataId": "Q3820973",
- "type": "CITY",
- "name": "La Massana",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "La Massana",
- "regionCode": 4,
- "latitude": 42.544354,
- "longitude": 1.515427
}, - {
- "id": 759,
- "wikiDataId": "Q1050185",
- "type": "CITY",
- "name": "Les Escaldes",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Escaldes-Engordany",
- "regionCode": "08",
- "latitude": 42.5,
- "longitude": 1.53333333
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/geo/cities?offset=10&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/geo/cities?offset=273685&limit=5"
}
], - "metadata": {
- "currentOffset": 5,
- "totalCount": 273690
}
}
Find cities near the given location, filtering by optional criteria. If no criteria are set, you will get back all cities within the default radius.
locationId required | string A latitude/longitude in ISO-6709 format: ±DD.DDDD±DDD.DDDD |
radius | integer <int32> The location radius within which to find places |
distanceUnit | string Default: "MI" The unit of distance: MI | KM |
countryIds | string Only places in these countries (comma-delimited country codes or WikiData ids) |
excludedCountryIds | string Only places NOT in these countries (comma-delimited country codes or WikiData ids) |
minPopulation | integer <int32> Only places having at least this population |
maxPopulation | integer <int32> Only places having no more than this population |
namePrefix | string Only entities whose names start with this prefix. If languageCode is set, the prefix will be matched on the name as it appears in that language. |
namePrefixDefaultLangResults | boolean Default: true When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set. |
timeZoneIds | string Only places in these time-zones (comma-delimited) |
types | string Only cities for these types (comma-delimited): ADM2 | CITY |
asciiMode | boolean Default: false Display results using ASCII characters |
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
languageCode | string Display results in this language |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
sort | string How to sort places. Format: ±SORT_FIELD,±SORT_FIELD where SORT_FIELD = countryCode | elevation | name | population |
includeDeleted | string Default: "NONE" Whether to include any divisions marked deleted: ALL | SINCE_YESTERDAY | SINCE_LAST_WEEK | NONE |
{- "data": [
- {
- "id": 2987553,
- "wikiDataId": "Q24371",
- "type": "CITY",
- "name": "L'Aldosa de Canillo",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Canillo",
- "regionCode": 2,
- "latitude": 42.57777778,
- "longitude": 1.61944444
}, - {
- "id": 3086756,
- "wikiDataId": "Q24486",
- "type": "CITY",
- "name": "La Cortinada",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Ordino",
- "regionCode": 5,
- "latitude": 42.57667,
- "longitude": 1.51773
}, - {
- "id": 3056764,
- "wikiDataId": "Q2536296",
- "type": "CITY",
- "name": "La Margineda",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Andorra la Vella",
- "regionCode": 7,
- "latitude": 42.4859,
- "longitude": 1.49045
}, - {
- "id": 978,
- "wikiDataId": "Q3820973",
- "type": "CITY",
- "name": "La Massana",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "La Massana",
- "regionCode": 4,
- "latitude": 42.544354,
- "longitude": 1.515427
}, - {
- "id": 759,
- "wikiDataId": "Q1050185",
- "type": "CITY",
- "name": "Les Escaldes",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Escaldes-Engordany",
- "regionCode": "08",
- "latitude": 42.5,
- "longitude": 1.53333333
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/geo/cities?offset=10&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/geo/cities?offset=273685&limit=5"
}
], - "metadata": {
- "currentOffset": 5,
- "totalCount": 273690
}
}
Find administrative divisions near the given location, filtering by optional criteria. If no criteria are set, you will get back all divisions within the default radius.
locationId required | string A latitude/longitude in ISO-6709 format: ±DD.DDDD±DDD.DDDD |
radius | integer <int32> The location radius within which to find places |
distanceUnit | string Default: "MI" The unit of distance: MI | KM |
countryIds | string Only places in these countries (comma-delimited country codes or WikiData ids) |
excludedCountryIds | string Only places NOT in these countries (comma-delimited country codes or WikiData ids) |
minPopulation | integer <int32> Only places having at least this population |
maxPopulation | integer <int32> Only places having no more than this population |
namePrefix | string Only entities whose names start with this prefix. If languageCode is set, the prefix will be matched on the name as it appears in that language. |
namePrefixDefaultLangResults | boolean Default: true When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set. |
timeZoneIds | string Only places in these time-zones (comma-delimited) |
asciiMode | boolean Default: false Display results using ASCII characters |
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
languageCode | string Display results in this language |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
sort | string How to sort places. Format: ±SORT_FIELD,±SORT_FIELD where SORT_FIELD = countryCode | elevation | name | population |
includeDeleted | string Default: "NONE" Whether to include any divisions marked deleted: ALL | SINCE_YESTERDAY | SINCE_LAST_WEEK | NONE |
{- "data": [
- {
- "id": 2987553,
- "wikiDataId": "Q24371",
- "type": "CITY",
- "name": "L'Aldosa de Canillo",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Canillo",
- "regionCode": 2,
- "latitude": 42.57777778,
- "longitude": 1.61944444
}, - {
- "id": 3086756,
- "wikiDataId": "Q24486",
- "type": "CITY",
- "name": "La Cortinada",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Ordino",
- "regionCode": 5,
- "latitude": 42.57667,
- "longitude": 1.51773
}, - {
- "id": 3056764,
- "wikiDataId": "Q2536296",
- "type": "CITY",
- "name": "La Margineda",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Andorra la Vella",
- "regionCode": 7,
- "latitude": 42.4859,
- "longitude": 1.49045
}, - {
- "id": 978,
- "wikiDataId": "Q3820973",
- "type": "CITY",
- "name": "La Massana",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "La Massana",
- "regionCode": 4,
- "latitude": 42.544354,
- "longitude": 1.515427
}, - {
- "id": 759,
- "wikiDataId": "Q1050185",
- "type": "CITY",
- "name": "Les Escaldes",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Escaldes-Engordany",
- "regionCode": "08",
- "latitude": 42.5,
- "longitude": 1.53333333
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/geo/cities?offset=10&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/geo/cities?offset=273685&limit=5"
}
], - "metadata": {
- "currentOffset": 5,
- "totalCount": 273690
}
}
Find places near the given location, filtering by optional criteria. If no criteria are set, you will get back all places within the default radius.
locationId required | string A latitude/longitude in ISO-6709 format: ±DD.DDDD±DDD.DDDD |
radius | integer <int32> The location radius within which to find places |
distanceUnit | string Default: "MI" The unit of distance: MI | KM |
countryIds | string Only places in these countries (comma-delimited country codes or WikiData ids) |
excludedCountryIds | string Only places NOT in these countries (comma-delimited country codes or WikiData ids) |
minPopulation | integer <int32> Only places having at least this population |
maxPopulation | integer <int32> Only places having no more than this population |
namePrefix | string Only entities whose names start with this prefix. If languageCode is set, the prefix will be matched on the name as it appears in that language. |
namePrefixDefaultLangResults | boolean Default: true When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set. |
timeZoneIds | string Only places in these time-zones (comma-delimited) |
types | string Only places for these types (comma-delimited): ADM2 | CITY | ISLAND |
asciiMode | boolean Default: false Display results using ASCII characters |
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
languageCode | string Display results in this language |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
sort | string How to sort places. Format: ±SORT_FIELD,±SORT_FIELD where SORT_FIELD = countryCode | elevation | name | population |
includeDeleted | string Default: "NONE" Whether to include any divisions marked deleted: ALL | SINCE_YESTERDAY | SINCE_LAST_WEEK | NONE |
{- "data": [
- {
- "id": 2987553,
- "wikiDataId": "Q24371",
- "type": "CITY",
- "name": "L'Aldosa de Canillo",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Canillo",
- "regionCode": 2,
- "latitude": 42.57777778,
- "longitude": 1.61944444
}, - {
- "id": 3086756,
- "wikiDataId": "Q24486",
- "type": "CITY",
- "name": "La Cortinada",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Ordino",
- "regionCode": 5,
- "latitude": 42.57667,
- "longitude": 1.51773
}, - {
- "id": 3056764,
- "wikiDataId": "Q2536296",
- "type": "CITY",
- "name": "La Margineda",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Andorra la Vella",
- "regionCode": 7,
- "latitude": 42.4859,
- "longitude": 1.49045
}, - {
- "id": 978,
- "wikiDataId": "Q3820973",
- "type": "CITY",
- "name": "La Massana",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "La Massana",
- "regionCode": 4,
- "latitude": 42.544354,
- "longitude": 1.515427
}, - {
- "id": 759,
- "wikiDataId": "Q1050185",
- "type": "CITY",
- "name": "Les Escaldes",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Escaldes-Engordany",
- "regionCode": "08",
- "latitude": 42.5,
- "longitude": 1.53333333
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/geo/cities?offset=10&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/geo/cities?offset=273685&limit=5"
}
], - "metadata": {
- "currentOffset": 5,
- "totalCount": 273690
}
}
Find places, filtering by optional criteria. If no criteria are set, you will get back all known places.
location | string Only places near this location. Latitude/longitude in ISO-6709 format: ±DD.DDDD±DDD.DDDD |
radius | integer <int32> The location radius within which to find places |
distanceUnit | string Default: "MI" The unit of distance: MI | KM |
countryIds | string Only places in these countries (comma-delimited country codes or WikiData ids) |
excludedCountryIds | string Only places NOT in these countries (comma-delimited country codes or WikiData ids) |
minPopulation | integer <int32> Only places having at least this population |
maxPopulation | integer <int32> Only places having no more than this population |
namePrefix | string Only entities whose names start with this prefix. If languageCode is set, the prefix will be matched on the name as it appears in that language. |
namePrefixDefaultLangResults | boolean Default: true When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set. |
timeZoneIds | string Only places in these time-zones (comma-delimited) |
types | string Only places for these types (comma-delimited): ADM2 | CITY | ISLAND |
asciiMode | boolean Default: false Display results using ASCII characters |
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
languageCode | string Display results in this language |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
sort | string How to sort places. Format: ±SORT_FIELD,±SORT_FIELD where SORT_FIELD = countryCode | elevation | name | population |
includeDeleted | string Default: "NONE" Whether to include any divisions marked deleted: ALL | SINCE_YESTERDAY | SINCE_LAST_WEEK | NONE |
{- "data": [
- {
- "id": 2987553,
- "wikiDataId": "Q24371",
- "type": "CITY",
- "name": "L'Aldosa de Canillo",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Canillo",
- "regionCode": 2,
- "latitude": 42.57777778,
- "longitude": 1.61944444
}, - {
- "id": 3086756,
- "wikiDataId": "Q24486",
- "type": "CITY",
- "name": "La Cortinada",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Ordino",
- "regionCode": 5,
- "latitude": 42.57667,
- "longitude": 1.51773
}, - {
- "id": 3056764,
- "wikiDataId": "Q2536296",
- "type": "CITY",
- "name": "La Margineda",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Andorra la Vella",
- "regionCode": 7,
- "latitude": 42.4859,
- "longitude": 1.49045
}, - {
- "id": 978,
- "wikiDataId": "Q3820973",
- "type": "CITY",
- "name": "La Massana",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "La Massana",
- "regionCode": 4,
- "latitude": 42.544354,
- "longitude": 1.515427
}, - {
- "id": 759,
- "wikiDataId": "Q1050185",
- "type": "CITY",
- "name": "Les Escaldes",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Escaldes-Engordany",
- "regionCode": "08",
- "latitude": 42.5,
- "longitude": 1.53333333
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/geo/cities?offset=10&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/geo/cities?offset=273685&limit=5"
}
], - "metadata": {
- "currentOffset": 5,
- "totalCount": 273690
}
}
Find places near the given place, filtering by optional criteria. If no criteria are set, you will get back all places within the default radius.
placeId required | string A place id (either native 'id' or 'wikiDataId') |
radius | integer <int32> The location radius within which to find places |
distanceUnit | string Default: "MI" The unit of distance: MI | KM |
countryIds | string Only places in these countries (comma-delimited country codes or WikiData ids) |
excludedCountryIds | string Only places NOT in these countries (comma-delimited country codes or WikiData ids) |
minPopulation | integer <int32> Only places having at least this population |
maxPopulation | integer <int32> Only places having no more than this population |
namePrefix | string Only entities whose names start with this prefix. If languageCode is set, the prefix will be matched on the name as it appears in that language. |
namePrefixDefaultLangResults | boolean Default: true When name-prefix matching, whether or not to match on names in the default language if a non-default languageCode is set. |
timeZoneIds | string Only places in these time-zones (comma-delimited) |
types | string Only places for these types (comma-delimited): ADM2 | CITY | ISLAND |
asciiMode | boolean Default: false Display results using ASCII characters |
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
languageCode | string Display results in this language |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
sort | string How to sort places. Format: ±SORT_FIELD,±SORT_FIELD where SORT_FIELD = countryCode | elevation | name | population |
includeDeleted | string Default: "NONE" Whether to include any divisions marked deleted: ALL | SINCE_YESTERDAY | SINCE_LAST_WEEK | NONE |
{- "data": [
- {
- "id": 2987553,
- "wikiDataId": "Q24371",
- "type": "CITY",
- "name": "L'Aldosa de Canillo",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Canillo",
- "regionCode": 2,
- "latitude": 42.57777778,
- "longitude": 1.61944444
}, - {
- "id": 3086756,
- "wikiDataId": "Q24486",
- "type": "CITY",
- "name": "La Cortinada",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Ordino",
- "regionCode": 5,
- "latitude": 42.57667,
- "longitude": 1.51773
}, - {
- "id": 3056764,
- "wikiDataId": "Q2536296",
- "type": "CITY",
- "name": "La Margineda",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Andorra la Vella",
- "regionCode": 7,
- "latitude": 42.4859,
- "longitude": 1.49045
}, - {
- "id": 978,
- "wikiDataId": "Q3820973",
- "type": "CITY",
- "name": "La Massana",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "La Massana",
- "regionCode": 4,
- "latitude": 42.544354,
- "longitude": 1.515427
}, - {
- "id": 759,
- "wikiDataId": "Q1050185",
- "type": "CITY",
- "name": "Les Escaldes",
- "country": "Andorra",
- "countryCode": "AD",
- "region": "Escaldes-Engordany",
- "regionCode": "08",
- "latitude": 42.5,
- "longitude": 1.53333333
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/geo/cities?offset=0&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/geo/cities?offset=10&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/geo/cities?offset=273685&limit=5"
}
], - "metadata": {
- "currentOffset": 5,
- "totalCount": 273690
}
}
Get place details such as location coordinates, population, and elevation above sea-level (if available).
placeId required | string A place id (either native 'id' or 'wikiDataId') |
asciiMode | boolean Default: false Display results using ASCII characters |
languageCode | string Display results in this language |
{- "data": {
- "id": 123214,
- "wikiDataId": "Q60",
- "type": "CITY",
- "name": "New York City",
- "country": "United States of America",
- "countryCode": "US",
- "region": "New York",
- "regionCode": "NY",
- "elevationMeters": 10,
- "latitude": 40.67,
- "longitude": -73.94,
- "population": 8398748,
- "timezone": "America__New_York",
- "deleted": false
}
}
Get distance from the given place
placeId required | string A place id (either native 'id' or 'wikiDataId') |
toPlaceId required | string Distance to this place |
distanceUnit | string Default: "MI" The unit of distance: MI | KM |
{- "data": 6707.9
}
Get the details for the containing populated place (e.g., its county or other administrative division), including location coordinates, population, and elevation above sea-level (if available).
placeId required | string A place id (either native 'id' or 'wikiDataId') |
asciiMode | boolean Default: false Display results using ASCII characters |
languageCode | string Display results in this language |
{- "data": {
- "id": 123214,
- "wikiDataId": "Q60",
- "type": "CITY",
- "name": "New York City",
- "country": "United States of America",
- "countryCode": "US",
- "region": "New York",
- "regionCode": "NY",
- "elevationMeters": 10,
- "latitude": 40.67,
- "longitude": -73.94,
- "population": 8398748,
- "timezone": "America__New_York",
- "deleted": false
}
}
Find currencies, filtering by optional criteria. If no criteria are set, you will get back all known currencies.
countryId required | string Currencies for this country id |
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
{- "data": [
- {
- "code": "AWG",
- "countryCodes": [
- "AW"
]
}, - {
- "code": "AZN",
- "countryCodes": [
- "AZ"
]
}, - {
- "code": "BAM",
- "countryCodes": [
- "BA"
]
}, - {
- "code": "BBD",
- "countryCodes": [
- "BB"
]
}, - {
- "code": "BDT",
- "countryCodes": [
- "BD"
]
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/locale/currencies?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/locale/currencies?offset=5&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/locale/currencies?offset=15&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/locale/currencies?offset=200&limit=5"
}
], - "metadata": {
- "currentOffset": 10,
- "totalCount": 205
}
}
Get all supported languages
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
{- "data": [
- {
- "code": "fr",
- "name": "French"
}, - {
- "code": "it",
- "name": "Italian"
}, - {
- "code": "pt",
- "name": "Portuguese"
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/locale/languages?offset=0&limit=3"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/locale/languages?offset=0&limit=3"
}, - {
- "rel": "next",
- "href": "/data/world/v1/locale/languages?offset=6&limit=3"
}, - {
- "rel": "last",
- "href": "/data/world/v1/locale/languages?offset=6&limit=3"
}
], - "metadata": {
- "currentOffset": 3,
- "totalCount": 8
}
}
Get all known locales
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
{- "data": [
- {
- "code": "eu"
}, - {
- "code": "ar_MR"
}, - {
- "code": "es_DO"
}, - {
- "code": "ru"
}, - {
- "code": "az"
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/locale/locales?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/locale/locales?offset=45&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/locale/locales?offset=55&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/locale/locales?offset=770&limit=5"
}
], - "metadata": {
- "currentOffset": 50,
- "totalCount": 772
}
}
Get all known time-zones
hateoasMode | boolean Default: true Include HATEOAS-style links in results |
limit | integer <int32> Default: 10 The maximum number of results to retrieve |
offset | integer <int32> Default: 0 The zero-ary offset index into the results |
{- "data": [
- {
- "id": "America__Marigot",
- "name": "Atlantic Standard Time",
- "rawUtcOffsetHours": -4
}, - {
- "id": "Asia__Aqtau",
- "name": "West Kazakhstan Time",
- "rawUtcOffsetHours": 5
}, - {
- "id": "Pacific__Kwajalein",
- "name": "Marshall Islands Time",
- "rawUtcOffsetHours": 12
}, - {
- "id": "America__El_Salvador",
- "name": "Central Standard Time",
- "rawUtcOffsetHours": -6
}, - {
- "id": "Asia__Pontianak",
- "name": "Western Indonesia Time",
- "rawUtcOffsetHours": 7
}
], - "links": [
- {
- "rel": "first",
- "href": "/data/world/v1/locale/timezones?offset=0&limit=5"
}, - {
- "rel": "prev",
- "href": "/data/world/v1/locale/timezones?offset=0&limit=5"
}, - {
- "rel": "next",
- "href": "/data/world/v1/locale/timezones?offset=10&limit=5"
}, - {
- "rel": "last",
- "href": "/data/world/v1/locale/timezones?offset=595&limit=5"
}
], - "metadata": {
- "currentOffset": 5,
- "totalCount": 600
}
}