Back to Services
Basic Trustrest
Mapbox — Geocoding
Forward and reverse geocoding — convert addresses to coordinates and coordinates to addresses with global coverage and high accuracy.
Total Calls
0
Success Rate
—
Avg Latency
—
Capabilities
geocodingmappinglocationcoordinatesaddress
Quick Integration
Call this service through the Agent Clear proxy
// Call Mapbox — Geocoding through the Agent Clear proxy
const response = await fetch(
'https://api.agentclear.dev/proxy/09f47bc5-8ef2-46e2-9091-c5ac240bc965',
{
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": [
"query"
],
"properties": {
"limit": {
"type": "number"
},
"query": {
"type": "string",
"description": "Address or coordinates"
},
"types": {
"type": "string"
}
}
}Output Schema
{
"type": "object",
"properties": {
"features": {
"type": "array",
"items": {
"type": "object",
"properties": {
"center": {
"type": "array",
"items": {
"type": "number"
}
},
"place_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