Everything you need to integrate the RichAPI API into your product.
Get a profile's recent posts, comments and reactions for engagement analysis.
/api/v1/profile_activitiesParameters
| Field | Type | Required | Description |
|---|---|---|---|
urn | string | Yes | LinkedIn entity URN of the profile |
type | string | No | Activity type filter: POST, COMMENT, or REACTION (default: all) |
pagination_token | string | No | Token from previous response for next page |
limit | int | No | Number of items per page |
Example response
{
"elements": [
{
"commentCount": 1,
"likeCount": 1,
"publishedAt": "example",
"text": "example",
"type": "example",
"url": "example"
}
]
}Code
curl -X POST https://dev-api.richapi.ai/api/v1/profile_activities \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"urn": "ACoAAA...",
"type": "POST",
"pagination_token": "example",
"limit": 1
}'Try it
Sign in to test this endpoint with your API key.
Sign in to try