Skip to main content
GET
/
public
/
v1
/
ads
/
engagement
/
counts
Ad engagement counts
curl --request GET \
  --url http://app.stairoids.com/api/public/v1/ads/engagement/counts \
  --header 'X-Api-Key: <api-key>'
{
  "totalAdLikes": 1430,
  "icpAdLikes": 640,
  "nonIcpAdLikes": 790,
  "totalCompanies": 510,
  "icpCompanies": 210,
  "nonIcpCompanies": 300
}

Authorizations

X-Api-Key
string
header
required

Your organization's public API key. Manage it at GET /api/user/public-api-key.

Query Parameters

lastEngagementAfter
integer<int64>
lastEngagementBefore
integer<int64>

Response

OK

Aggregate counts of LinkedIn ad engagement.

totalAdLikes
integer<int64>

Total ad likes.

Example:

1430

icpAdLikes
integer<int64>

Ad likes from ICP-matched companies.

Example:

640

nonIcpAdLikes
integer<int64>

Ad likes from non-ICP companies.

Example:

790

totalCompanies
integer<int64>

Total distinct engaged companies.

Example:

510

icpCompanies
integer<int64>

ICP-matched engaged companies.

Example:

210

nonIcpCompanies
integer<int64>

Non-ICP engaged companies.

Example:

300