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
  1. Home
  2. /Playground
  3. /Geocoding
  4. /Geocoding Search API

Endpoint Playground

Try the Geocoding Search API

Test Crawlora's Geocoding Search API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.

Endpoint facts

Method
GET
API path
/geocoding/search
Platform
Geocoding
Auth
apiKey
Credits
1 credit/request
Required params
None
Common optional params
q, street, city, county, state, country
Geocoding Search API documentationGeocoding platform pageCrawlora API pricingTry Geocoding Lookup APITry Geocoding Reverse API

Prefilled cURL

curl "https://api.crawlora.net/api/v1/geocoding/search?q=Brandenburg+Gate+Berlin&limit=5&countrycodes=de&accept_language=en&addressdetails=true" \
  -H "x-api-key: $CRAWLORA_API_KEY"

Request parameters visible to crawlers

ParameterTypeRequiredPrefilled valueDescription
qstringNoBrandenburg Gate BerlinFree-text search query
streetstringNoStructured street or house number
citystringNoStructured city
countystringNoStructured county
statestringNoStructured state
countrystringNoStructured country
postalcodestringNoStructured postal code
limitintegerNo5Maximum results, defaults to 10 and clamps to 20
countrycodesstringNodeComma-separated ISO 3166-1 alpha-2 country filters
accept_languagestringNoenPreferred result language, forwarded to Nominatim
addressdetailsbooleanNotrueInclude address details, defaults to true
extratagsbooleanNoInclude OSM extra tags
namedetailsbooleanNoInclude multilingual name details

Example JSON response

{
  "code": 200,
  "msg": "OK",
  "data": {
    "query": "Empire State Building",
    "results": [
      {
        "place_id": 358220252,
        "osm_type": "way",
        "osm_id": 34633854,
        "lat": "40.7484421",
        "lon": "-73.9856589",
        "category": "office",
        "type": "yes",
        "place_rank": 30,
        "importance": 0.5803438355141769,
        "addresstype": "office",
        "name": "Empire State Building",
        "display_name": "Empire State Building, 350, 5th Avenue, New York, United States",
        "address": {
          "office": "Empire State Building",
          "house_number": "350",
          "road": "5th Avenue",
          "city": "New York",
          "state": "New York",
          "postcode": "10118",
          "country": "United States",
          "country_code": "us"
        },
        "boundingbox": [
          "40.7479255",
          "40.7489585",
          "-73.9865012",
          "-73.9848166"
        ]
      }
    ]
  }
}

Public Playground

Preview the endpoint before sending a live request

Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.

Set up API keyEndpoint docs

Endpoint

Choose one catalog endpoint for this request.

3 shown
GETapiKey1 credit/requestgeocoding.searchResponseDocGeocoding
GET /geocoding/search

Search Nominatim places

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

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

View docs
Sample responseGET

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "code": 200,
  "msg": "OK",
  "data": {
    "query": "Empire State Building",
    "results": [
      {
        "place_id": 358220252,
        "osm_type": "way",
        "osm_id": 34633854,
        "lat": "40.7484421",
        "lon": "-73.9856589",
        "category": "office",
        "type": "yes",
        "place_rank": 30,
        "importance": 0.5803438355141769,
        "addresstype": "office",
        "name": "Empire State Building",
        "display_name": "Empire State Building, 350, 5th Avenue, New York, United States",
        "address": {
          "office": "Empire State Building",
          "house_number": "350",
          "road": "5th Avenue",
          "city": "New York",
          "state": "New York",
          "postcode": "10118",
          "country": "United States",
          "country_code": "us"
        },
        "boundingbox": [
          "40.7479255",
          "40.7489585",
          "-73.9865012",
          "-73.9848166"
        ]
      }
    ]
  }
}

Endpoint details

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

Method
GET
Path
/geocoding/search
Authentication
apiKey
Credit cost
1 credit/request
Platform
Geocoding
Parameters
14 documented fields

Request parameters

q:querystreet:querycity:querycounty:querystate:querycountry:querypostalcode:querylimit:querycountrycodes:queryaccept_language:queryaddressdetails:queryextratags:query+2 more

Response schema fields

codedatadata.querydata.resultsdata.results[].addressdata.results[].address.ISO3166-2-lvl4data.results[].address.ISO3166-2-lvl6data.results[].address.citydata.results[].address.countrydata.results[].address.country_codedata.results[].address.countydata.results[].address.house_number

Sample response summary

{
  "code": 200,
  "msg": "OK",
  "data": {
    "query": "Empire State Building",
    "results": [
      {
        "place_id": 358220252,
        "osm_type": "way",
        "osm_id": 34633854,
        "lat": "40.7484421",
        "lon": "-73.9856589",
        "category": "office",
        "type": "yes",
        "place_rank": 30,
        "importance": 0.5803438355141769,
        "addresstype": "office",
        "name": "Empire State Building",
        "display_name": "Empire State Building, 350, 5th Avenue, New York, United States",
        "address": {
          "office": "Empire State Building",
          "house_number": "350",
          "road": "5th Avenue",
          "city": "New York",
          "state": "New York",
          "postcode": "10118",
          "country": "United States",
          "country_code": "us"
        },
        "boundingbox": [
          "40.7479255",
          "40.7489585",
          "-73.9865012",
          "-73.9848166"
        ]
      }
    ]
  }
}

cURL example

curl "https://api.crawlora.net/api/v1/geocoding/search" \
  -H "x-api-key: $CRAWLORA_API_KEY"
View endpoint docsOpen platform pageBrowse all endpointsPricingLookup Nominatim OSM idsReverse geocode coordinates

Browse public API demos

Google Trends explore dataSearch Nominatim placesReverse geocode coordinatesSearch TripAdvisor placesSearch Zillow listingsCoinGecko marketsCoinGecko trending highlightsYahoo Finance ticker quote
DocsPlatformsPricing