Crawlora
ProductPlatformsUse CasesDocsPricingCompare
Sign inTry Playground Console
Crawlora

Structured public web data APIs for search, maps, geocoding, streaming, travel, real estate, marketplaces, apps, social, audio, crypto, finance, and AI workflows with managed execution and credit-based usage.

Product

Web Scraping APIFeaturesInfrastructure FeaturesPlatformsTravel APIsReal Estate APIsPricing

Platforms

Google SearchGoogle TrendsBingBraveGoogle MapsGeocodingJustWatchAirbnbTripAdvisorZillowCoinGeckoYahoo FinanceGoogle FinanceAmazon

Developers

DocsGetting StartedAuthenticationAPI ExamplesRecipesShowcasesBlogChangelogPlaygroundSDKsIntegrationsMCP

Use cases

SERP MonitoringGoogle Maps LeadsTravel & Hospitality ResearchProperty Market IntelligenceApp Review AnalysisReview & Reputation MonitoringTikTok Trend IntelligenceYouTube Creator IntelligenceAmazon Product MonitoringMusic Catalog / Playlist IntelligencePodcast & Audio IntelligenceCrypto Market ResearchFinance Market DataAI Agent Web Data

Legal

TermsPrivacy
Product
Web Scraping APIFeaturesInfrastructure FeaturesPlatformsTravel APIsReal Estate APIsPricing
Platforms
Google SearchGoogle TrendsBingBraveGoogle MapsGeocodingJustWatchAirbnbTripAdvisorZillowCoinGeckoYahoo FinanceGoogle FinanceAmazon
Developers
DocsGetting StartedAuthenticationAPI ExamplesRecipesShowcasesBlogChangelogPlaygroundSDKsIntegrationsMCP
Use cases
SERP MonitoringGoogle Maps LeadsTravel & Hospitality ResearchProperty Market IntelligenceApp Review AnalysisReview & Reputation MonitoringTikTok Trend IntelligenceYouTube Creator IntelligenceAmazon Product MonitoringMusic Catalog / Playlist IntelligencePodcast & Audio IntelligenceCrypto Market ResearchFinance Market DataAI Agent Web Data
Legal
TermsPrivacy

© 2026 Built with 💖 by Tony Wang

|System:Crawlora API status
Docs menu

Start here

OverviewGetting StartedAuthenticationRate Limits and CreditsError Handling

Examples

ExamplescURLTypeScriptPythonGo

Recipes

RecipesSERP MonitoringGoogle Maps LeadsApp Review AnalysisYouTube TranscriptsTikTok Trend ResearchAmazon Product MonitoringAI Agent Web Data

API Reference

AirbnbAmazonApplePodcastsAppStoreBingBraveCoinGeckoeBayGeocodingGoogleGoogle FinanceGoogle MapGooglePlayInstagramJustWatchLinkedInProductHuntSimilarWebSpotifySpotifyPodcastsTikTokTripAdvisorTrustpilotYahoo FinanceYouTubeZillow

Start here

OverviewGetting StartedAuthenticationRate Limits and CreditsError Handling

Examples

ExamplescURLTypeScriptPythonGo

Recipes

RecipesSERP MonitoringGoogle Maps LeadsApp Review AnalysisYouTube TranscriptsTikTok Trend ResearchAmazon Product MonitoringAI Agent Web Data

API Reference

AirbnbAmazonApplePodcastsAppStoreBingBraveCoinGeckoeBayGeocodingGoogleGoogle FinanceGoogle MapGooglePlayInstagramJustWatchLinkedInProductHuntSimilarWebSpotifySpotifyPodcastsTikTokTripAdvisorTrustpilotYahoo FinanceYouTubeZillow
  1. Home
  2. /Docs
  3. /Geocoding API

API Reference

Geocoding API Documentation

Use Crawlora's Geocoding API endpoints to extract supported public Geocoding data as structured JSON. This documentation covers 3 active endpoints including Lookup Nominatim OSM ids, Reverse geocode coordinates, Search Nominatim places. Developers can use these endpoints for monitoring, enrichment, research dashboards, internal data pipelines, and AI-agent workflows without maintaining platform-specific scraping code. Each endpoint page documents authentication, request parameters such as osm_ids, lat, lon, cURL examples, response examples, response schemas, errors, credit cost, and Playground testing. Send requests to the Crawlora API with an x-api-key header, review usage and plan limits on pricing, and test safe sample requests in Playground before moving the workflow into production.

Try Search Nominatim places Start with endpoint docsPricing

Quick start

Choose an endpoint, send an authenticated request with the x-api-key header, and inspect the normalized JSON response. The examples below use the public Crawlora API base URL and the same endpoint catalog used by Playground.

Base URL
https://api.crawlora.net/api/v1
Auth header
x-api-key: $CRAWLORA_API_KEY
Primary endpoint
GET /geocoding/search
Credit cost
1 credit/request
curl -X GET "https://api.crawlora.net/api/v1/geocoding/search?q=coffee&country=us&limit=10&addressdetails=true&extratags=true&namedetails=true" \
  -H "x-api-key: $CRAWLORA_API_KEY"
Try Search Nominatim places in PlaygroundAPI key authenticationReview Crawlora pricing

Common concepts

  • Authenticated API-key requests
  • Structured JSON responses
  • Credit-based usage and plan limits
  • Documented validation and upstream errors
  • Playground testing before integration
  • Responsible public web data workflows
Geocoding platform pageError handling guideRate limits and credits

Geocoding API endpoints

These endpoint cards are generated from the active Crawlora endpoint catalog, including method, path, auth mode, credit cost, parameter summary, docs, and Playground links.

GET/geocoding/lookupapiKey1 credit/request

Lookup Nominatim OSM ids

Returns typed Nominatim JSONv2 places for comma-separated OSM ids such as W34633854,N123,R456.

Required params: osm_ids:query

Lookup Nominatim OSM ids documentationTry Lookup Nominatim OSM ids in Playground
GET/geocoding/reverseapiKey1 credit/request

Reverse geocode coordinates

Returns the nearest typed Nominatim JSONv2 place for latitude and longitude.

Required params: lat:query, lon:query

Reverse geocode coordinates documentationTry Reverse geocode coordinates in Playground
GET/geocoding/searchapiKey1 credit/request

Search Nominatim places

Returns typed Nominatim JSONv2 forward geocoding results. Use either q or structured fields, not both.

Required params: None

Search Nominatim places documentationTry Search Nominatim places in Playground

Endpoint reference table

EndpointAPI pathMethodCreditsRequired paramsDocsPlayground
Lookup Nominatim OSM ids/geocoding/lookupGET1 credit/requestosm_ids:queryView docsTry endpoint
Reverse geocode coordinates/geocoding/reverseGET1 credit/requestlat:query, lon:queryView docsTry endpoint
Search Nominatim places/geocoding/searchGET1 credit/requestNoneView docsTry endpoint

Related Crawlora API pages

Geocoding scraper API platform pageTry the primary endpoint in PlaygroundBrowse supported platformsCrawlora API pricingGoogle Maps API documentation
Back to docs