Skip to main content
AiCorner LogoAiCorner
ToolsSkillsMCP ServersAPIsDocumentation
AiCorner LogoAiCorner

The modern standard directory for LLM capabilities, MCP servers, developer APIs, and autonomous agent tools.

searchdescriptionmail

Explore Catalog

  • All Tools
  • Agent Skills
  • MCP Servers
  • Developer APIs
  • Free Tools
  • Compare Tools

Navigation

  • Browse Categories
  • Documentation
  • FAQs
  • Search Catalog

Support & Legal

  • Contact Us
  • Privacy Policy
  • Terms of Service
  • Sitemap

© 2026 AiCorner. All rights reserved.

APIschevron_rightData & Analyticschevron_rightGeoBounds Precise
dataset

GeoBounds Precise

keyGet API Key

Overview

Reverse geocoding, property boundaries, and postal geometry for urban mapping and last-mile logistics. Batched lookups with 99.99% address-match accuracy and global coverage. Ideal for delivery routing, real estate, and civic infrastructure applications.

pin_drop99.99% Match Accuracy

Address matching tuned against parcel and civic registries.

mapGlobal Coverage

Postal geometry and boundaries across 200+ countries.

inventory_2Batch Lookups

Up to 1,000 coordinates per request for fleet-scale routing.

Authentication

All requests require a Bearer Token provided in the Authorization header.

HTTP Header
Authorization: Bearer $API_KEY

Endpoints

MethodPathDescription
GET/v1/searchReverse geocode a coordinate to an address.
GET/v1/boundaries/{id}Fetch the boundary polygon for a parcel or region.
POST/v1/batchReverse geocode up to 1,000 coordinates in one call.
GET/v1/autocompleteAutocomplete place and address queries for search UX.

Quick Start Example

curl -X GET "https://maps.geobounds.io/v1/search?lat=37.7749&lng=-122.4194" \
  -H "Authorization: Bearer $API_KEY"

Parameters & Responses

Parameters

  • latREQUIRED
    Type: numberLatitude of the point to reverse geocode (-90 to 90).
  • lngREQUIRED
    Type: numberLongitude of the point to reverse geocode (-180 to 180).
  • includeOPTIONAL
    Type: stringComma-separated extras: boundary, timezone, neighborhood.

Response Example

JSON 200 OK
{
  "status": "success",
  "data": {
    "address": {
      "street": "535 Mission St",
      "city": "San Francisco",
      "region": "CA",
      "postalCode": "94105",
      "country": "US"
    },
    "accuracy": 0.998,
    "boundaryId": "parcel_8k2w"
  },
  "usage": {
    "ms": 204
  }
}

Technical Specs

TransportREST / JSON
AuthAPI KEY
LicenseCommercial
Last Update4w ago

Resources

menu_bookFull API Documentationarrow_forwardcodeJavaScript / TypeScriptarrow_forwardcodePythonarrow_forwardcodeSwiftarrow_forwardhubOfficial Product Websitearrow_forward
shield

Security & Safety Note

API keys are scoped per application with IP allowlisting. Coordinate payloads are processed in memory and never logged in full. Boundary data is licensed for production use under the commercial terms agreed at signup.