Firecrawl API integration for AI agents

<h3>Firecrawl API & Chase Agents</h3><h4>Master Web Data Extraction: Chase Agents & Firecrawl API Integration</h4><p>Chase Agents transforms your ability to gather and utilize web data by seamlessly integrating with the Firecrawl API. Build powerful applications and automated agents that can crawl and extract structured data from any website, turning the web into a vast data source—all without complex coding, orchestrated through Chase Agents's no-code platform.</p>

Connect Firecrawl API to Chase Agents as an API connection, then use it in plain-English automations — on the web, in Slack, or inside ChatGPT and Claude via MCP. Chase Agents builds the workflow and deterministic code runs it.

How to connect Firecrawl API

Add Firecrawl API from the Chase Agents connections marketplace as API connection, provide the required credentials, and reference it in your automation steps. See plans or read the connection guide.

About Firecrawl API

Using /extract You can extract structured data from one or multiple URLs, including wildcards:

Single Page Example: https://firecrawl.dev/some-page Multiple Pages / Full Domain Example: https://firecrawl.dev/ When you use /, Firecrawl will automatically crawl and parse all URLs it can discover in that domain, then extract the requested data. This feature is experimental; email help@firecrawl.dev if you have iss

curl -X POST https://api.firecrawl.dev/v1/extract \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_API_KEY' \ -d '{ "urls": [ "https://firecrawl.dev/", "https://docs.firecrawl.dev/", "https://www.ycombinator.com/companies" ], "prompt": "Extract the company mission, whether it supports SSO, whether it is open source, and whether it is in Y Combinator from the page.", "schema": { "type": "object", "properties": { "company_mission": { "type": "string" }, "supports_sso": { "type": "boolean" }, "is_open_source": { "type": "boolean" }, "is_in_yc": { "type": "boolean" } }, "required": [ "company_mission", "supports_sso", "is_open_source", "is_in_yc" ] } }'

To then get the results for this asynchronous extraction: curl -X GET https://api.firecrawl.dev/v1/extract/<extract_id> \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_API_KEY'

Performing a Search with Firecrawl when you don't know the exact url

/search endpoint Used to perform web searches and curl -X POST https://api.firecrawl.dev/v1/search \ -H "Content-Type: application/json" \ -H "Authorization: Bearer fc-YOUR_API_KEY" \ -d '{ "query": "firecrawl web scraping", "limit": 5 }'

Official Firecrawl API documentation