Each response includes accuracy: the radius, in kilometers around the returned location, where the IP address is likely to be.
Locate an IP address and get its timezone in one call
Get an end user's location from their IP address. A single call to /position returns a city-level location and the timezone.
Call it from the browser with a public key or from your server with a private key.

THEY Trust GEOLOCATION API





Choose the endpoint that matches the job
Three endpoints for three jobs - with a sample response for each.
/position
Estimate a location from an IP address
The response includes country, region, city and postal code, coordinates and a viewport, the accuracy radius in kilometers, and the timezone with its offsets.
Some fields may be omitted when the IP data is not relevant or accurate enough.
{
"country_code": "US",
"country_name": "United States",
"city": "Alexandria",
"region_state": "Virginia",
"postal_code": "22309",
"latitude": 38.719,
"longitude": -77.1067,
"accuracy": 5,
"timezone": "America/New_York",
"raw_offset": -18000,
"dst_offset": 3600
}/stores
Find nearby stores in the same request
When your stores are registered in Woosmap, a single request estimates the end user's location from their IP address and returns the stores nearby. Add limit=1 to ask for the closest one. Stores come back only when a relevant IP location is found, with accuracy of 20 km or better; otherwise the result is empty, so provide a fallback in your application. For the complete store locator journey, start with Store Locator.
{
"city": "Alexandria",
"accuracy": 5,
"stores": {
"type": "FeatureCollection",
"features": [
{
"properties": {
"store_id": "STORE_ID_123456",
"name": "My Cool Store",
"distance": 0,
"open": { "open_now": true }
}
}
]
}
}/timezone
Resolve a timezone from coordinates
The Timezone endpoint takes latitude,longitude, not an IP address. It returns the IANA timezone, its name, and the raw and DST offsets; timestamp is optional. If /position already located the user, the timezone is already in that response.
{
"timezone": "Europe/Paris",
"timezone_name": "CEST",
"raw_offset": 3600,
"dst_offset": 3600
}City-level accuracy with an explicit radius
This is city-level accuracy, not street-level or GPS accuracy.
What Etam reported after redesigning its checkout with Woosmap

After redesigning a geolocated checkout with Woosmap, the e-Commerce conversion rate increased by more than 50% compared to 2019.
This result covers the checkout project as a whole, which used Store Locator, Geolocation and Address Finder. It cannot be attributed to the Geolocation API alone.

Extremely quick to integrate.
Etam reports that implementing checkout maps across four brands and around fifteen websites took approximately 20 person-days. The team also used the Woosmap console to monitor usage and run quality-assurance tests.
Frequently asked questions about Geolocation
What data does Geolocation use to locate a user?
The API uses the end user's IP address. It does not use GPS, Wi-Fi location data or a device identifier. The Data Processing Agreement and the authorized subprocessors list cover how that data is processed.
How accurate is IP geolocation?
IP geolocation works at city level, not address level. Each response includes an accuracy field: a radius in kilometers around the returned point, inside which the IP address is likely to be. Use that radius, not just the coordinates, when deciding how to use the result.
Can I call Geolocation from both a browser and a server?
Yes. Browser-side calls use a public key, and the browser supplies the required Referer header. Server-side calls use a private key, and can pass ip_address explicitly to locate an address other than the caller's.
What should my application do when the location is not accurate enough?
Add a fallback to your application. /stores returns stores only when it finds a relevant IP location with an accuracy of 20 km or less; otherwise the result is empty. You can then ask the user for a ZIP code or city.
Do I need a separate request to obtain the user's timezone?
No. /position already includes the timezone and its raw and daylight-saving offsets. Use the separate /timezone endpoint when you already have coordinates.
Choose the next step for your Geolocation project
Geolocation is available on Pro and Enterprise plans. Create a developer account, review pricing, or talk to our team about high-volume usage and project-specific terms. Woosmap publishes a Service Level Agreement and a Pro plan SLA.