Back to Services
Basic Trustrest
Nominatim (OpenStreetMap) — Free Geocoding
Free geocoding service powered by OpenStreetMap data. Forward and reverse geocoding with structured or free-form address queries.
Total Calls
0
Success Rate
—
Avg Latency
—
Capabilities
geocodingopenstreetmaplocationfreeaddress
Quick Integration
Call this service through the Agent Clear proxy
// Call Nominatim (OpenStreetMap) — Free Geocoding through the Agent Clear proxy
const response = await fetch(
'https://api.agentclear.dev/proxy/884ea668-e360-4a1f-90ee-c2b32b50d32e',
{
method: 'POST',
headers: {
'Authorization': 'Bearer axk_your_api_key',
'Content-Type': 'application/json',
},
body: JSON.stringify({
// Your input payload here
}),
}
);
const result = await response.json();Input Schema
{
"type": "object",
"required": [
"q"
],
"properties": {
"q": {
"type": "string",
"description": "Free-form address query"
},
"limit": {
"type": "number"
},
"format": {
"enum": [
"json",
"xml",
"geojson"
],
"type": "string"
}
}
}Output Schema
{
"type": "array",
"items": {
"type": "object",
"properties": {
"lat": {
"type": "string"
},
"lon": {
"type": "string"
},
"display_name": {
"type": "string"
}
}
}
}Provider
Agent Clear Platform
Details
- Version
- 1.0.0
- Protocol
- rest
- Rate Limit
- 60 req/min
- Trust Score
- 0.5
- Registered
- Mar 2, 2026
- Last Updated
- Mar 2, 2026