curl --request POST \
--url https://api.crustdata.com/person/professional_network/search/live \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-api-version: <x-api-version>' \
--data '
{
"filters": [
{
"field": "CURRENT_TITLE",
"type": "in",
"value": [
"CEO"
]
},
{
"field": "COMPANY_HEADCOUNT",
"type": "in",
"value": [
"11-50"
]
}
],
"page": 1
}
'{
"profiles": [
{
"basic_profile": {
"name": "Jane Smith",
"headline": "CEO at TechStartup",
"current_title": "CEO"
},
"social_handles": {
"professional_network_identifier": {
"profile_url": "https://www.linkedin.com/in/janesmith"
}
},
"experience": {
"employment_details": {
"current": [
{
"title": "CEO",
"name": "TechStartup"
}
]
}
}
}
],
"total_display_count": "2,500"
}Perform a real-time person search using LinkedIn Sales Navigator filters. Supports synchronous search with pagination as well as asynchronous background jobs for large result sets. Filter by title, company, headcount, industry, region, seniority, and many other Sales Navigator fields.
curl --request POST \
--url https://api.crustdata.com/person/professional_network/search/live \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-api-version: <x-api-version>' \
--data '
{
"filters": [
{
"field": "CURRENT_TITLE",
"type": "in",
"value": [
"CEO"
]
},
{
"field": "COMPANY_HEADCOUNT",
"type": "in",
"value": [
"11-50"
]
}
],
"page": 1
}
'{
"profiles": [
{
"basic_profile": {
"name": "Jane Smith",
"headline": "CEO at TechStartup",
"current_title": "CEO"
},
"social_handles": {
"professional_network_identifier": {
"profile_url": "https://www.linkedin.com/in/janesmith"
}
},
"experience": {
"employment_details": {
"current": [
{
"title": "CEO",
"name": "TechStartup"
}
]
}
}
}
],
"total_display_count": "2,500"
}API key passed as a Bearer token in the Authorization header.
API version to use. Must match a supported version (e.g., "2025-11-01").
"2025-11-01"
Sales Navigator filters, pagination, and optional background job configuration.
Request body for real-time person search via LinkedIn Sales Navigator.
UUID of a previously submitted background job to retrieve results for
"550e8400-e29b-41d4-a716-446655440000"
Professional network search URL for person search
"https://www.linkedin.com/sales/search/people?query=..."
Array of Sales Navigator filter objects
Show child attributes
[
{
"field": "CURRENT_TITLE",
"type": "in",
"value": ["CEO"]
},
{
"field": "COMPANY_HEADCOUNT",
"type": "in",
"value": ["11-50"]
}
]Page number for pagination (required when using filters with synchronous search)
x >= 11
Maximum number of profiles to fetch
1 <= x <= 1000025
Set to true to process the search asynchronously
false
Preview mode - return only basic fields. Cannot be combined with page, limit, background_job, or post_processing.
false
Post-processing options for excluding profiles or names from results
Show child attributes
{
"exclude_profiles": [],
"exclude_names": []
}Was this page helpful?