Search Companies
curl --request POST \
--url https://api.linkupapi.com/v2/profiles \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"keyword": "<string>",
"location": [
"<string>"
],
"sector": [
"<string>"
],
"company_size": [
"<string>"
],
"total_results": 123,
"results_per_page": 123,
"start_page": 123,
"end_page": 123
}
}
'{
"success": true,
"data": {
"companies": [
{
"name": "AI Solutions Inc.",
"linkedin_url": "https://www.linkedin.com/company/ai-solutions-inc",
"headline": "Building the future of AI",
"location": "San Francisco, CA",
"industry": "Artificial Intelligence",
"company_size": "51-200",
"logo_url": "https://media.licdn.com/dms/image/company-logo.jpg"
},
{
"name": "DeepTech Labs",
"linkedin_url": "https://www.linkedin.com/company/deeptech-labs",
"headline": "Deep learning research and applications",
"location": "San Francisco, CA",
"industry": "Computer Software",
"company_size": "11-50",
"logo_url": "https://media.licdn.com/dms/image/company-logo2.jpg"
}
],
"total_results": 2,
"total_available_results": 840
},
"metadata": {
"action": "search_companies",
"account_id": "your-account-id",
"credits_consumed": 2,
"timestamp": "2026-03-24T12:00:00Z"
}
}
Profiles
Search Companies
Search for company pages using various filters.
POST
/
v2
/
profiles
Search Companies
curl --request POST \
--url https://api.linkupapi.com/v2/profiles \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"keyword": "<string>",
"location": [
"<string>"
],
"sector": [
"<string>"
],
"company_size": [
"<string>"
],
"total_results": 123,
"results_per_page": 123,
"start_page": 123,
"end_page": 123
}
}
'{
"success": true,
"data": {
"companies": [
{
"name": "AI Solutions Inc.",
"linkedin_url": "https://www.linkedin.com/company/ai-solutions-inc",
"headline": "Building the future of AI",
"location": "San Francisco, CA",
"industry": "Artificial Intelligence",
"company_size": "51-200",
"logo_url": "https://media.licdn.com/dms/image/company-logo.jpg"
},
{
"name": "DeepTech Labs",
"linkedin_url": "https://www.linkedin.com/company/deeptech-labs",
"headline": "Deep learning research and applications",
"location": "San Francisco, CA",
"industry": "Computer Software",
"company_size": "11-50",
"logo_url": "https://media.licdn.com/dms/image/company-logo2.jpg"
}
],
"total_results": 2,
"total_available_results": 840
},
"metadata": {
"action": "search_companies",
"account_id": "your-account-id",
"credits_consumed": 2,
"timestamp": "2026-03-24T12:00:00Z"
}
}
Overview
Search for company pages using keyword, location, sector, and size filters. Supports pagination for retrieving large result sets.This endpoint consumes 1 credit per 10 results returned.
Request
Your API key for authentication.
The unique identifier of the account to use.
Must be
"search_companies".Show params properties
Show params properties
General keyword to search for across company profiles.
Filter by company location. Accepts a single string or an array (e.g.,
["New York", "Germany"]).Filter by industry sector. Accepts a single string or an array.
Filter by company size range. Accepts a single string or an array (e.g.,
["11-50", "201-500"]).Total number of results to return. Defaults to
10.Number of results per page.
Start page for pagination (1-indexed). Use with
end_page for pagination mode.End page for pagination (inclusive). Use with
start_page for pagination mode.Response
Indicates whether the request was successful.
Show data properties
Show data properties
List of matching companies.
Number of results returned.
Total number of matching results available.
{
"success": true,
"data": {
"companies": [
{
"name": "AI Solutions Inc.",
"linkedin_url": "https://www.linkedin.com/company/ai-solutions-inc",
"headline": "Building the future of AI",
"location": "San Francisco, CA",
"industry": "Artificial Intelligence",
"company_size": "51-200",
"logo_url": "https://media.licdn.com/dms/image/company-logo.jpg"
},
{
"name": "DeepTech Labs",
"linkedin_url": "https://www.linkedin.com/company/deeptech-labs",
"headline": "Deep learning research and applications",
"location": "San Francisco, CA",
"industry": "Computer Software",
"company_size": "11-50",
"logo_url": "https://media.licdn.com/dms/image/company-logo2.jpg"
}
],
"total_results": 2,
"total_available_results": 840
},
"metadata": {
"action": "search_companies",
"account_id": "your-account-id",
"credits_consumed": 2,
"timestamp": "2026-03-24T12:00:00Z"
}
}
Was this page helpful?
⌘I