Use the integrations surface when you want to automate BrezelScraper outside the dashboard.Documentation Index
Fetch the complete documentation index at: https://brezelscraper.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
What integrations are for
- Use API keys for authenticated server-to-server API calls.
- Use webhook configurations when you want BrezelScraper to call back to your automation endpoint.
- Use the dashboard for creating and revoking both from one place under Integrations.
Recommended automation pattern
For most users, the most reliable pattern is:- Create an API key.
- Create a job with
POST /api/v1/jobs. - Check status with
GET /api/v1/jobs/{id}until the job reachescompleted,failed, orcancelled. - Fetch results with
GET /api/v1/jobs/{id}/resultsor download CSV withGET /api/v1/jobs/{id}/download.
Using n8n
BrezelScraper works with n8n in two main ways:- API-first: use n8n’s
HTTP Requestnode to create jobs, poll status, and fetch results - Webhook-triggered fetch: point a BrezelScraper webhook configuration at an n8n
Webhooknode, then use the incoming call to trigger follow-up API requests
API keys
Use API keys when n8n or another automation tool needs to call BrezelScraper directly.- BrezelScraper accepts
Authorization: Bearer bscraper_... - BrezelScraper also accepts
X-API-Key: bscraper_... - The full key is shown exactly once when you create it
Webhook configurations
Webhook configurations let you register an HTTPS callback URL in your account.- The URL must be HTTPS
- Unsafe or local targets are rejected
- You can keep up to 10 active webhook configurations

