Skip to main content
GET
/
api
/
v1
/
accounts
/
{account_id}
Get Account Detail In Vertical
curl --request GET \
  --url https://api.openfunnel.dev/api/v1/accounts/{account_id} \
  --header 'Authorization: Bearer <token>'
{
  "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>"
    },
    "people": [
      {
        "id": 123,
        "full_name": "<string>",
        "title": "<string>",
        "seniority": "<string>",
        "department": "<string>",
        "linkedin_url": "<string>",
        "team_name": "<string>",
        "linkedin_profile_picture": "<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>"
      }
    ]
  }
}

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>.

Path Parameters

account_id
integer
required

Account ID

Required range: x >= 1

Query Parameters

vertical_id
integer
required

Vertical ID

Required range: x >= 1
people_limit
integer
default:5

Maximum number of related people to embed

Required range: 1 <= x <= 25
events_limit
integer
default:10

Maximum number of related events to embed

Required range: 1 <= x <= 25

Response

Successful Response

data
object
required