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.
Use Case
Use the Search API to find people or companies using a natural language query — no manual list building required. The search runs asynchronously: you submit a query, poll for progress, and either browse results as paginated JSON or download them as a CSV. Ideal for prospecting, building targeted lead lists, or discovering contacts that match specific criteria across the web.Core Concepts
| Term | Description |
|---|---|
| task_id | Unique identifier returned when a search starts; used to poll for status |
| resource_handle_id | Identifier for the result file, available once the search completes |
| mode | Search mode — currently "people" (default) to find individual contacts |
| max_results | Upper bound on how many results to return (default: 1000) |
| output_mode | Controls result delivery — "csv" (default) produces a downloadable file, "query_only" lets you browse results as paginated JSON via /search/query |
| search_id | Identifier for a completed search. Use with /search/query to browse results or /search/export to generate a CSV |
Execution Flows
CSV Download
- Start —
POST /search/start-deep-search. See Start Deep Search. Submit your natural language query and receive atask_id. - Poll —
GET /search/status/{task_id}. See Get Search Status. Poll untilstatusiscompleted; the response includesresource_handle_id. - Download —
GET /search/download. See Download Search Results. Request a signed URL withresource_handle_id, then download the CSV. The signed URL expires in 15 minutes.
Paginated JSON
- Start —
POST /search/start-deep-searchwithoutput_mode: "query_only". See Start Deep Search. Receive atask_id. - Poll —
GET /search/status/{task_id}. See Get Search Status. Whenstatusiscompleted, note thesearch_idfrom the response. - Browse —
POST /search/query. See Query Search Results. Send thesearch_idto get paginated JSON results and usecursorfor next pages. - Export (optional) —
POST /search/export. See Export Search Results. Generate a CSV from the samesearch_id.