Skip to main content
GET
/
api
/
v1
/
accounts
/
find
Find Accounts
curl --request GET \
  --url https://api.openfunnel.dev/api/v1/accounts/find \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "name": "<string>",
      "domain": "<string>",
      "linkedin_url": "<string>",
      "employee_count": 123,
      "employee_count_range": "<string>",
      "funding_stage": "<string>",
      "hq_country": "<string>",
      "hq_region": "<string>",
      "hq_city": "<string>",
      "industries": [
        "<string>"
      ],
      "description": "<string>",
      "linkedin_follower_count": 123,
      "company_logo_url": "<string>"
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total_count": 123,
    "has_more": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.openfunnel.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Send your API key as Authorization: Bearer <api_key>.

Query Parameters

vertical_id
integer
required

Vertical ID to search within

Required range: x >= 1
event_type_id
integer

Optional event type ID filter

Required range: x >= 1

Search by account name or domain

Required string length: 1 - 200
country
string[]

Repeat the query param to include multiple account HQ countries

industry
string[]

Repeat the query param to include multiple industries

funding_stage
string[]

Repeat the query param to include multiple funding stages

employee_count_range
string[]

Repeat the query param to include multiple employee ranges

page
integer
default:1

1-indexed page number

Required range: x >= 1
limit
integer
default:20

Maximum results to return (1-100)

Required range: 1 <= x <= 100

Response

Successful Response

data
Data · object[]
required
pagination
Pagination · object
required