Skip to main content
GET
/
api
/
v1
/
accounts
/
search-events
Search Accounts With Events
curl --request GET \
  --url https://api.openfunnel.dev/api/v1/accounts/search-events \
  --header 'Authorization: Bearer <token>'
{
  "query": "<string>",
  "data": [
    {
      "account": {
        "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>"
      },
      "events": [
        {
          "id": 123,
          "event_type_id": 123,
          "event_type_name": "<string>",
          "signal_type": "<string>",
          "event_date": "<string>",
          "team_name": "<string>",
          "summary": "<string>",
          "source_url": "<string>"
        }
      ]
    }
  ],
  "total_count": 123
}

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

Required range: x >= 1
query
string
required

Account name or domain search query

Required string length: 1 - 200
limit
integer
default:10

Maximum matching accounts to return (1-50)

Required range: 1 <= x <= 50
events_limit
integer
default:5

Maximum latest events to include per matched account (1-10)

Required range: 1 <= x <= 10

Response

Successful Response

query
string
required
data
Data · object[]
required
total_count
integer
required