DocsIntegrationsPlaygroundPricing
Get API Key
Automation

Make Integration

Make (formerly Integromat) is a visual automation platform. Use the HTTP module to call SupaCrawlX APIs inside any Make scenario and map the response to downstream modules.

Setup Steps

1

Create a new Scenario

Log into Make and create a new scenario with any trigger module.

2

Add an HTTP module

Search for "HTTP" in the module picker and select "Make a request".

3

Configure the URL

Enter: https://api.supacrawlx.com/v1/transcript?url={{url}}

4

Set method to GET

Select GET for most endpoints. For batch/crawl select POST.

5

Add auth header

Click "Show advanced settings", then Headers. Add: x-api-key = your API key.

6

Map the output

Use {{body.text}} or {{body.content}} in subsequent modules.

Variable mapping

Make variable syntax
// Access transcript text
{{body.text}}

// Access metadata title
{{body.title}}

// Access page content (web scrape)
{{body.content}}

// Access crawl job ID
{{body.jobId}}
View full API Reference →