01
Add an HTTP module
Use 'Make a request' and set the method and URL to a Crawlora endpoint, for example POST https://api.crawlora.net/api/v1/google/map/search.
Developer guides
Call Crawlora's structured web data APIs from Make's HTTP module — no custom code — and automate search, maps, e-commerce, and finance scenarios.
Verified HTTP pattern
POST /google/search
Request
POST https://api.crawlora.net/api/v1/google/search
x-api-key: $CRAWLORA_API_KEY
Content-Type: application/json
{
"country": "us",
"keyword": "best CRM software",
"language": "en",
"limit": 10,
"page": 1
}Base URL
https://api.crawlora.net/api/v1
Auth header
x-api-key
Example endpoint
POST /google/search
Make (formerly Integromat) is a no-code automation platform. Crawlora does not ship a dedicated Make app, but Make's built-in HTTP module calls any Crawlora endpoint directly.
Developer workflow
Make connects services without code. Crawlora returns normalized JSON from supported public platforms, so you can fetch data with the HTTP module and route it to spreadsheets, databases, or Slack without maintaining parsers. The same agent-native structured data also backs Crawlora's hosted MCP tools when you move from scenarios to agents.
Developer workflow
01
Use 'Make a request' and set the method and URL to a Crawlora endpoint, for example POST https://api.crawlora.net/api/v1/google/map/search.
02
Send an x-api-key header. Store the key in a Make connection or a data store rather than hardcoding it in the module.
03
Set the body type to JSON (Raw) and provide the request parameters, such as query and limit.
Developer workflow
Developer workflow
The HTTP module sends this request; map the fields into downstream modules.
curl -X POST https://api.crawlora.net/api/v1/google/map/search \
-H "x-api-key: $CRAWLORA_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "coffee shops in Austin, TX", "limit": 20}'Developer workflow
Developer workflow
Use Crawlora for structured public web data workflows. Customers are responsible for compliance with applicable laws, third-party rights, platform rules, and Crawlora terms. Keep API keys server-side, validate inputs, and avoid collecting or storing unnecessary sensitive data.
Read Crawlora termsDeveloper workflow
Use these pages to move between endpoint discovery, examples, pricing, and responsible-use guidance.
Developer workflow
Common questions for this Crawlora developer integration path.
Not a dedicated app. Use Make's built-in HTTP module to call any Crawlora endpoint and parse the JSON response.
Send your Crawlora API key as an x-api-key header, stored in a Make connection or data store rather than hardcoded.
Yes. Make scenarios can run on a schedule, so you can collect data on an interval.
Yes. Because responses are normalized JSON, you can map fields directly into Make's Google Sheets, database, or Slack modules.
Add error handling and a delay or retry on 429 responses, and keep result counts bounded.
Check the API docs and test the endpoint in the Playground, then copy the parameters into the HTTP module's JSON body.
Add an HTTP module, set your API key, and point it at the endpoint you need.