Skip to main content
POST
/
search
/
start-deep-search
Start Deep Search (Async)
curl --request POST \
  --url https://api.sixtyfour.ai/search/start-deep-search \
  --header 'Content-Type: application/json' \
  --data '
{
  "query": "<string>",
  "mode": "people",
  "max_results": 1000,
  "search_id": "<string>",
  "output_mode": "csv"
}
'
{
  "task_id": "<string>",
  "status": "<string>",
  "message": "<string>"
}

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

Body

application/json

Request to start an agentic search workflow.

query
string
required

Natural-language search query.

mode
enum<string>
default:people

Search mode: 'people' or 'company'.

Available options:
people,
company
max_results
integer
default:1000

Maximum number of results to return across pages.

search_id
string | null

Optional client-supplied search ID for idempotent retries.

output_mode
enum<string>
default:csv

Output mode: 'csv' to export, 'query_only' to return parsed query only.

Available options:
csv,
query_only

Response

Successful Response

Response for starting an agentic search.

task_id
string
required

Async task ID; poll for status with this value.

status
string
required

Initial task status, typically 'queued'.

message
string
required

Human-readable status message.