# GeoJSON Places API — https://geo-places.0exec.com Continents, countries, regions, states with GeoJSON geometries. Fastify service backed by the geojson-places dataset. Full Swagger UI at the root URL. Routes: /continent, /country, /region, /state, /search. ## Endpoints - `GET /continent` — List continents - returns: application/json - `GET /country` — List countries - returns: application/json - `GET /country/{code}` — Country by ISO code - `code` (path, required): ISO 3166-1 alpha-2 code, e.g. RO - returns: application/json - `GET /country/{code}/regions` — Regions in country - `code` (path, required): Country code - returns: application/json - `GET /region/{code}` — Region by code - `code` (path, required): Region code - returns: application/json - `GET /state/{code}` — State by code - `code` (path, required): State code - returns: application/json - `GET /search` — Search places - `q` (query, optional): Search query - returns: application/json - `GET /search/reverse` — Reverse geocode - `lat` (query, required): Latitude - `lon` (query, required): Longitude - returns: application/json ## Examples curl 'https://geo-places.0exec.com/country/RO' ## Meta endpoints (gateway-served, no upstream call) - `GET /.deploy/version.json` — current deployed commit - `GET /openapi.json` — machine-readable OpenAPI 3.1 spec - `GET /llms.txt` — this file - `GET /_gw_health` — gateway liveness probe Source: https://github.com/baditaflorin/geo-places