Ideal Customer Profiles
v1
Retrieve Ideal Customer Profiles
Retrieve all Ideal Customer Profiles (ICPs) defined in the account. Each ICP is a saved set of company-level filter criteria (employee count, industry, location) used to identify target companies.
Credit Note: Retrieving ICP definitions does not consume credits.
:::info Requires the icps:read OAuth2 scope. :::
get/v1/icps
Query parameters
account_idstring required
The Leadfeeder Account ID. The Account ID can be retrieved using the List Accounts endpoint.
Response
Success
Example response
{
"data": [
{
"type": "icp",
"id": "6080",
"attributes": {
"name": "US Prospects",
"created_at": "2024-12-10T15:57:25Z",
"filters": {
"employee_count": [
{
"search_value": "US",
"display_value": "United States"
}
],
"industries": [
{
"search_value": "US",
"display_value": "United States"
}
],
"location": [
{
"search_value": "US",
"display_value": "United States"
}
]
}
}
}
],
"meta": {
"request_id": "cf054205-dd8c-4473-8689-07c30fe0789f"
}
}