Crawlora Docs
Make a first authenticated request, inspect normalized JSON, test the same endpoint in Playground, and prepare the integration for production.
Crawlora provides structured public web data APIs for supported platforms. Instead of maintaining proxies, browsers, parsers, retry logic, and scaling infrastructure, you call Crawlora endpoints and receive normalized JSON.
Create or copy an API key from your Crawlora dashboard. Keep it server-side and store it in an environment variable.
export CRAWLORA_API_KEY="crl_..."
Start from the API catalog or a supported platform page. The catalog is generated from the same endpoint metadata used by Playground.
Search and filter the full public endpoint catalog.
OpenSERP monitoring and search intelligence workflows.
OpenTrends, Jobs, Suggestions, and broader Google discovery workflows.
OpenWeb, image, news, video, and suggestion search workflows.
OpenLocal business and place data workflows.
OpenAddress search, reverse geocoding, and OSM lookup workflows.
OpenStreaming title, provider, offer, season, and episode workflows.
OpenTravel place, hotel, restaurant, attraction, and review workflows.
OpenReal estate property search, listing, and autocomplete workflows.
OpenPublic storefront metadata, products, collections, pages, search suggestions, and sitemap workflows.
OpenCrypto markets, coin profiles, trends, categories, chains, exchanges, NFTs, and unlock workflows.
OpenVideo, channel, playlist, and transcript workflows.
OpenPublic trend, hashtag, creator, and video research.
OpenPodcast discovery, show, episode, chart, and agent-native audio workflows.
OpenQuotes, historical prices, screeners, calendars, market summaries, and ticker modules.
OpenThis example uses the real Google search API endpoint at https://api.crawlora.net/api/v1/google/search.
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X POST "https://api.crawlora.net/api/v1/google/search" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-H "Content-Type: application/json" \
-d '{"country":"us","keyword":"chatgpt","language":"en","limit":10,"page":1}'Crawlora responses are normalized JSON. Exact fields vary by endpoint, so use each endpoint reference page as the schema source of truth.
Use Playground to run a request with generated inputs, inspect response modes, and confirm endpoint behavior before adding it to your application.
Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora termsYou can build structured public web data workflows for supported platforms such as search, maps, social video, audio and podcasts, app stores, Shopify storefronts, marketplaces, reviews, crypto, finance, and AI-agent research.
No. Crawlora handles managed proxy routing for supported endpoints where that infrastructure is needed.
No. Supported dynamic workflows can use Crawlora browser-backed rendering and managed browser capacity.
Credits measure API usage. Different endpoints may use different credit amounts depending on complexity. See rate limits and pricing for current values.
Use the current pricing page and dashboard plan details to confirm available trial or free usage.
Endpoint detail pages show request and response schema summaries generated from the endpoint metadata.
Validate 400-class inputs, back off on 429, retry temporary 5xx and timeouts with caps, and inspect response bodies for request context.
Browse the catalog, open a reference page, and run the same request in Playground.