{ "opencollection": "1.0.0", "info": { "name": "Firecrawl Account Scraping API", "version": "v2" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Scraping", "type": "folder" }, "items": [ { "info": { "name": "Scrape a single URL and optionally extract information using an LLM", "type": "http" }, "http": { "method": "POST", "url": "https://api.firecrawl.dev/v2/scrape", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Scrape a single URL and optionally extract information using an LLM" }, { "info": { "name": "Interact with the browser session associated with a scrape job", "type": "http" }, "http": { "method": "POST", "url": "https://api.firecrawl.dev/v2/scrape/:jobId/interact", "params": [ { "name": "jobId", "value": "", "type": "path", "description": "The scrape job ID" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Interact with the browser session associated with a scrape job" }, { "info": { "name": "Stop the interactive browser session associated with a scrape job", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.firecrawl.dev/v2/scrape/:jobId/interact", "params": [ { "name": "jobId", "value": "", "type": "path", "description": "The scrape job ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Stop the interactive browser session associated with a scrape job" }, { "info": { "name": "Upload and parse a file", "type": "http" }, "http": { "method": "POST", "url": "https://api.firecrawl.dev/v2/parse", "body": { "type": "multipart-form", "data": [ { "name": "file", "type": "text", "value": "" }, { "name": "options", "type": "text", "value": "" } ] }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Upload and parse a file" }, { "info": { "name": "Scrape multiple URLs and optionally extract information using an LLM", "type": "http" }, "http": { "method": "POST", "url": "https://api.firecrawl.dev/v2/batch/scrape", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Scrape multiple URLs and optionally extract information using an LLM" }, { "info": { "name": "Get the status of a batch scrape job", "type": "http" }, "http": { "method": "GET", "url": "https://api.firecrawl.dev/v2/batch/scrape/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the batch scrape job" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get the status of a batch scrape job" }, { "info": { "name": "Cancel a batch scrape job", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.firecrawl.dev/v2/batch/scrape/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the batch scrape job" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Cancel a batch scrape job" }, { "info": { "name": "Get the errors of a batch scrape job", "type": "http" }, "http": { "method": "GET", "url": "https://api.firecrawl.dev/v2/batch/scrape/:id/errors", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the batch scrape job" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get the errors of a batch scrape job" } ] } ], "bundled": true }