Skip to main content
GET
/
public
/
v1
/
ads
/
likes
/
recent
Recent ad likes
curl --request GET \
  --url http://app.stairoids.com/api/public/v1/ads/likes/recent \
  --header 'X-Api-Key: <api-key>'
[
  {
    "likeId": 55123,
    "person": {
      "publicIdentifier": "jane-doe-123",
      "name": "Jane Doe",
      "headline": "VP of Marketing",
      "linkedInUrl": "<string>",
      "profilePicture": "<string>"
    },
    "company": {
      "companyId": 4521,
      "name": "Acme Corp",
      "domain": "acme.com",
      "industry": "Software",
      "country": "Netherlands",
      "city": "Amsterdam",
      "employeeCount": 250,
      "companySize": "201-500",
      "linkedInUrl": "https://www.linkedin.com/company/acme",
      "totalScore": 87,
      "icpMatched": true,
      "icpId": 7,
      "icpName": "Mid-market SaaS",
      "rankedLeadScoreId": 55231,
      "logoUrl": "<string>",
      "funnelStageId": 12,
      "funnelStage": "Hot",
      "labels": [
        {
          "id": 5,
          "name": "Strategic",
          "color": "#73d89c",
          "userGenerated": true
        }
      ],
      "latestActivityTimestamp": 1719500000000
    },
    "adPostId": 987654,
    "adTitle": "<string>",
    "engagementLevel": "HIGH",
    "timestamp": 1719500000000
  }
]

Authorizations

X-Api-Key
string
header
required

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

Query Parameters

limit
integer<int32>
default:3

Response

OK

likeId
integer<int64>

Like id.

Example:

55123

person
object

A person (LinkedIn profile).

company
object

A company in your pipeline, with its current intent / lead score.

adPostId
integer<int64>

Id of the ad post that was liked.

Example:

987654

adTitle
string

Title of the ad post.

engagementLevel
string

Engagement level bucket.

Example:

"HIGH"

timestamp
integer<int64>

When the like happened, epoch millis.

Example:

1719500000000