Endpoints

POST /account-intelligence

This endpoint is used to get information about a given company.

Example usage:

curl -X POST 'https://app.hockeystack.com/integration/sales/account-intelligence?v=2' \
     -H "Authorization: Bearer YOUR_API_TOKEN" \
     -H "Content-Type: application/json" \
     -d '{
       "company_domain": "example.com",
       "fields_to_get": "hockeystack_goals,company_details_hockeystack,website_visitors,website_visits"
     }'

Request body

  • company_domain (required): The normalized domain of the company to fetch. Do not include https:// or www. or any trailing slashes in the domain.

  • fields_to_get (optional): The comma separated list of fields to fetch from the API. No spaces allowed before or after comma. If not included, the API will return all fields. Possible options:

    • hockeystack_goals

    • company_details_hockeystack

    • website_visitors

    • website_visits

Response format

Last updated