Skip to main content
GET
/
fdw
/
jobs
List job activity logs for the FDW
curl --request GET \
  --url https://api.firecrawl.dev/v2/fdw/jobs \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "mode": "<string>",
      "created_at": "<string>",
      "origin": "<string>",
      "url_or_query": "<string>",
      "success": true,
      "credits_billed": 123,
      "num_docs": 123,
      "time_taken": 123,
      "message": "<string>",
      "error_count": 123,
      "agent_model": "<string>",
      "scrape_options": {},
      "scrape_pdf_num_pages": 123,
      "api_key_id": 123
    }
  ]
}
Activity log metadata rows for the Firecrawl FDW.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

start_date
string
required

Start of the date range (ISO date or timestamp)

end_date
string
required

End of the date range (ISO date or timestamp)

mode
enum<string>

Filter by job type

Available options:
scrape,
crawl,
batch_scrape,
map,
search,
extract,
agent,
deep_research

Substring match on URL or query (UUID matches job_id)

limit
integer

Maximum rows to return (default 100, max 500)

Required range: 1 <= x <= 500
offset
integer

Pagination offset (default 0)

Required range: x >= 0

Response

Successful response

success
boolean
Example:

true

data
object[]