Back to catalog

Endpoint

Open-Meteo — geocoding

Search places by name and read latitude, longitude, timezone, and country for use with forecast APIs.

Resolve city names to coordinates

LocationNo API keyDefault GET

HTTP console

Example URL
https://geocoding-api.open-meteo.com/v1/search?name=Berlin&count=3&language=enProvider documentation
Request

GET with name, optional count and language.

GET /v1/search?name=Berlin&count=3
Response

{ results: [{ id, name, latitude, longitude, country, admin1, … }] }

{
  "results": [
    {
      "id": 2950159,
      "name": "Berlin",
      "latitude": 52.52,
      "longitude": 13.41,
      "country": "Germany"
    }
  ]
}
Outbound requestProxy

Executes on the server with rate limits and host rules. Edit the URL and payload to match your scenario—responses show real upstream status and body (truncated if very large).

Upstream response

Ready. Click Send to execute the request. Status, latency, content type, and body appear here—formatted when the payload is JSON.