What are OnCoord Geocoding Services?
OnCoord is a hosted geocoding service built on open data sources such as OpenStreetMap, OpenAddresses, and Overture Maps. It converts addresses, coordinates, and place names into geographic information — without the need to manage your own servers or data pipelines.
What is an API key?
API stands for Application Programming Interface. When you use OnCoord's geocoding service, we use an API key to identify your application when it makes a request to OnCoord’s services.
- Go to OnCoord.com
- Enter your email address and verify via the link we send you.
- Select your plan (Free, Lite, or higher tier) and retrieve your API key.
Keep your API key private — never expose it in public client-side code.
Make Your First Request
You can test the API immediately using cURL, JavaScript, or Python:
# Example using cURL
curl "https://api.oncoord.com/v1/search?text=Pizza+Hut+Tijuana+Mexico&api_key=YOUR_API_KEY"
// JavaScript example
fetch("https://api.oncoord.com/v1/search?text=Pizza+Hut+Tijuana+Mexico&api_key=YOUR_API_KEY")
.then(res => res.json())
.then(console.log);
# Python example
import requests
r = requests.get("https://api.oncoord.com/v1/search", params={"text": "Pizza Hut Tijuana Mexico", "api_key": "YOUR_API_KEY"})
print(r.json())
Try Autocomplete
Autocomplete helps predict and complete partial addresses:
curl "https://api.oncoord.com/v1/autocomplete?text=Amazon+Theatre&api_key=YOUR_API_KEY"
Explore More Endpoints
/v1/search/structured– Structured address lookup/v1/reverse– Reverse geocoding from coordinates/v1/search/batch– Batch geocoding multiple addresses/v1/autocomplete/places– Place-specific autocomplete
👉 For full documentation, login/create account at OnCoord.com