curl --request POST \
--url https://api.sixtyfour.ai/search/export \
--header 'Content-Type: application/json' \
--data '
{
"search_id": "<string>",
"parsed_query": {},
"mode": "company",
"max_results": 1000,
"exclude_public_ids": [
"<string>"
],
"exclude_entity_ids": [
"<string>"
],
"exclude_list_ids": [
"<string>"
]
}
'{
"task_id": "<string>",
"status": "<string>",
"message": "<string>"
}Search Export
Export search results as a CSV file. Poll /search/status/ for a presigned download URL when complete.
curl --request POST \
--url https://api.sixtyfour.ai/search/export \
--header 'Content-Type: application/json' \
--data '
{
"search_id": "<string>",
"parsed_query": {},
"mode": "company",
"max_results": 1000,
"exclude_public_ids": [
"<string>"
],
"exclude_entity_ids": [
"<string>"
],
"exclude_list_ids": [
"<string>"
]
}
'{
"task_id": "<string>",
"status": "<string>",
"message": "<string>"
}Headers
Body
Request to export search results as CSV.
Search history ID returned by a previous search. Replays only the query shape; pass exclusions again on this request if they should apply.
Structured filter set returned by a previous search.
Search mode; inferred from DB when not set.
people, company Maximum number of results to return across pages.
People-mode inline identifiers to exclude from results, applied as a post-filter. Accepts LinkedIn public IDs or profile URLs. For company searches, use exclude_entity_ids. Max 1000.
1000Inline identifiers to exclude from results, applied as a post-filter. People mode: LinkedIn public IDs or profile URLs. Company mode: numeric LinkedIn company IDs, company URLs/slugs, or exact website domains (values that resolve to no or multiple companies are ignored). Max 1000.
1000Saved exclusion-list IDs to apply as a post-filter. Each list's entity type must match the search mode (person lists for people searches, company lists for company searches). Max 5.
5Was this page helpful?