# 1. Start a deep search
curl -X POST "https://api.sixtyfour.ai/search/start-deep-search" \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "VP of Engineering at Series B SaaS startups in New York",
"mode": "people",
"max_results": 500
}'
# 2. Poll for status (use task_id from step 1)
curl -X GET "https://api.sixtyfour.ai/search/deep-search-status/TASK_ID" \
-H "x-api-key: YOUR_API_KEY"
# 3. Download results (use resource_handle_id from step 2)
curl -X GET "https://api.sixtyfour.ai/search/download?resource_handle_id=RESOURCE_HANDLE_ID" \
-H "x-api-key: YOUR_API_KEY"