01
Add an HTTP Request node
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 n8n's HTTP Request node — no custom code — and automate search, maps, e-commerce, and finance workflows.
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
n8n is an open-source workflow automation tool. Crawlora does not ship a dedicated n8n node, but n8n's built-in HTTP Request node calls any Crawlora endpoint directly — and this guide includes a ready-to-import workflow template.
Developer workflow
n8n connects services without code. Crawlora returns normalized JSON from supported public platforms, so you can fetch data with the HTTP Request node and pass it to spreadsheets, databases, Slack, or AI nodes without maintaining parsers. The same agent-native structured data also backs Crawlora's hosted MCP tools when you move from automations to agents.
Developer workflow
01
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 an n8n credential or environment variable (for example {{ $env.CRAWLORA_API_KEY }}) rather than hardcoding it in the node.
03
Set 'Send Body' to JSON and provide the request parameters, such as query and limit for Google Maps search.
Developer workflow
Download the template and import it in n8n via Workflows then Import from File. It wires a manual trigger to a Crawlora Google Maps search call and splits the results into individual place items.
Developer workflow
The HTTP Request node sends this request; map the fields into your downstream nodes.
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 community node. Use n8n's built-in HTTP Request node to call any Crawlora endpoint; this guide includes a ready-to-import workflow template.
Send your Crawlora API key as an x-api-key header. Store it in an n8n credential or environment variable rather than hardcoding it in the node.
Yes. Replace the manual trigger with the Schedule (Cron) trigger to run collection on an interval.
Yes. Because responses are normalized JSON, you can map fields directly into n8n's Google Sheets, database, or Slack nodes.
Back off on 429 responses with a Wait node or retry settings, and keep result counts and concurrency bounded.
Check the API docs and test the endpoint in the Playground, then copy the parameters into the HTTP Request node's JSON body.
Import the workflow template, add your API key, and point the HTTP Request node at the endpoint you need.