Get Task
Task
Get Task
Retrieve detailed information about a specific task
GET
Get Task
This endpoint retrieves detailed information about a specific task using its hash ID, including its current status, parameters, and execution history.
Headers
Your API authentication token. Value:
Token YOUR_API_KEYQuery Parameters
The unique identifier (hash) of the task. Example:
c5e29d2aba8b77cdc56391e7405302deResponse Field Explanations
Unique task identifier. Example:
"c5e29d2aba8b77cdc56391e7405302de"Task creation timestamp (ISO 8601). Example:
"2024-12-24T10:57:55.045567"Whether the task is active. Example:
trueTask parameters (URL, search terms, etc.). Example:
{"url": "https://..."}Internal module identifier. Example:
5Detailed execution status information. Example:
{...}Always “task”. Example:
"task"Status Object Fields
Current task status (pending, running, completed, aborted, failed). Example:
"completed"When task execution started. Example:
"2025-02-04T10:25:47.278419"When task execution ended. Example:
"2025-02-04T10:26:52.310738"Whether the task has completed. Example:
trueTotal number of results scraped. Example:
156Total pages processed. Example:
1Reason for task completion (completed, run_aborted, error, etc.). Example:
"completed"Whether errors occurred during execution. Example:
falseError details if any occurred. Example:
nullThe done_reason field helps identify why a task stopped - whether it completed normally, was aborted, or encountered errors.
Code Examples
Response
200
404