Skip to main content
GET
/
search
/
deep-search-status
/
{task_id}
Deep Search Status
curl --request GET \
  --url https://api.sixtyfour.ai/search/deep-search-status/{task_id}
{
  "task_id": "<string>",
  "status": "<string>",
  "start_time": "<string>",
  "current_phase": 123,
  "progress_message": "<string>",
  "close_time": "<string>",
  "resource_handle_id": "<string>",
  "total_results": 123,
  "exported_count": 123,
  "error": "<string>",
  "search_id": "<string>",
  "iterations": [
    {}
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.sixtyfour.ai/llms.txt

Use this file to discover all available pages before exploring further.

Headers

x-api-key
string | null

Path Parameters

task_id
string
required

Response

Successful Response

Response for checking agentic search status.

task_id
string
required

Async task ID being queried.

status
string
required

Current status (e.g. queued, running, completed, failed).

start_time
string
required

Timestamp when the task started.

current_phase
integer | null

Current pipeline phase index.

progress_message
string | null

Human-readable progress message.

close_time
string | null

Timestamp when the task finished.

resource_handle_id
string | null

Handle for downloading exported results.

total_results
integer | null

Total results found.

exported_count
integer | null

Number of results actually exported.

error
string | null

Error message if the operation failed.

search_id
string | null

Search history ID returned by a previous search.

iterations
Iterations · object[] | null

Per-iteration debug data emitted by the agent.