Skip to main content
GET /api/region-dossier Returns a rich intelligence dossier for the country or region at the given coordinates. Data is assembled in parallel from Nominatim, RestCountries, Wikidata SPARQL, and the Wikipedia REST API.
Rate limit: 30 requests per minute per IP.

Caching

Results are cached for 24 hours keyed on a 0.1° grid (approximately 11 km). Multiple requests within the same grid cell return instantly from the cache.

Query parameters

lat
number
required
Latitude in decimal degrees (−90 to 90).
lng
number
required
Longitude in decimal degrees (−180 to 180).

Response

coordinates
object
required
The input coordinates.
location
object
required
Reverse geocode result from Nominatim.
country
object
Country profile. null if the point is in international waters or an uninhabited area.
local
object
Wikipedia summary for the nearest city or the country itself.
error
string
Present only when no country data is available — e.g. "No country data — possibly international waters or uninhabited area".

Example

curl "http://localhost:8000/api/region-dossier?lat=35.6762&lng=139.6503"
{
  "coordinates": { "lat": 35.6762, "lng": 139.6503 },
  "location": {
    "city": "Tokyo",
    "state": "Tokyo",
    "country": "Japan",
    "country_code": "JP",
    "display_name": "Tokyo, Japan"
  },
  "country": {
    "name": "Japan",
    "official_name": "Japan",
    "leader": "Fumio Kishida",
    "government_type": "Constitutional monarchy",
    "population": 125681593,
    "capital": "Tokyo",
    "languages": ["Japanese"],
    "currencies": ["Japanese yen (¥)"],
    "region": "Asia",
    "subregion": "Eastern Asia",
    "area_km2": 377930,
    "flag_emoji": "🇯🇵"
  },
  "local": {
    "name": "Tokyo",
    "state": "Tokyo",
    "description": "Capital and most populous city of Japan",
    "summary": "Tokyo, officially the Tokyo Metropolis, is the capital and most populous city of Japan...",
    "thumbnail": "https://upload.wikimedia.org/wikipedia/commons/thumb/.../320px-Tokyo.jpg"
  }
}

Build docs developers (and LLMs) love