curl --request POST \
--url https://api.openfunnel.dev/api/v1/account/get-account-list \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <x-api-key>' \
--header 'X-User-ID: <x-user-id>' \
--data '
{
"filters": {
"is_imported": true,
"is_present_in_crm": true,
"min_employee_count": 1,
"max_employee_count": 1,
"funding_stages": [
"<string>"
],
"hq_country_codes": [
"<string>"
],
"include_audience_ids": [
123
],
"include_signal_ids": [
123
]
}
}
'{
"accounts": [
{
"id": 123,
"domain": "<string>"
}
],
"total_count": 123
}curl --request POST \
--url https://api.openfunnel.dev/api/v1/account/get-account-list \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <x-api-key>' \
--header 'X-User-ID: <x-user-id>' \
--data '
{
"filters": {
"is_imported": true,
"is_present_in_crm": true,
"min_employee_count": 1,
"max_employee_count": 1,
"funding_stages": [
"<string>"
],
"hq_country_codes": [
"<string>"
],
"include_audience_ids": [
123
],
"include_signal_ids": [
123
]
}
}
'{
"accounts": [
{
"id": 123,
"domain": "<string>"
}
],
"total_count": 123
}Optional filters to apply when querying accounts. All filters are combined with AND logic.
Show child attributes
Filter by whether the account was imported (true) or discovered (false)
Filter by whether the account exists in the connected CRM (true) or not (false)
Minimum employee count (inclusive). Must be >= 0 and <= max_employee_count if both are provided
x >= 0Maximum employee count (inclusive). Must be >= 0 and >= min_employee_count if both are provided
x >= 0List of funding stages to filter by (e.g., ['seed', 'series_a', 'series_b'])
Filter by headquarters country codes (e.g., ['US', 'UK', 'CA'])
List of audience IDs to include in the results
List of signal IDs to include in the results