Skip to main content
POST
/
fdw
/
job-results
Fetch job result payloads for the FDW
curl --request POST \
  --url https://api.firecrawl.dev/v2/fdw/job-results \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "job_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}
'
{
  "success": true,
  "data": [
    {
      "job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "mode": "<string>",
      "result_json": {},
      "found": true,
      "error": "<string>"
    }
  ]
}
Fetch job result payloads for the Firecrawl FDW.

Authorizations

Authorization
string
header
required

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

Body

application/json
job_ids
string<uuid>[]
required
Required array length: 1 - 100 elements

Response

Successful response

success
boolean
Example:

true

data
object[]