Get post from LinkedIn with KonbiniAPI
Returns a public LinkedIn post including author, engagement counts, and up to ~5 inline comments.
This API endpoint returns a public LinkedIn post including author, engagement counts, and up to ~5 inline comments.
Perfect for
- Data Analytics
- Market Research
- Platform Integration
1. Make the request
const response = await fetch("https://api.konbiniapi.com/v1/linkedin/posts/DGS29x", {
headers: { "Authorization": "Bearer YOUR_API_KEY" }
});
const data = await response.json();
2. Get clean JSON
Response (200 OK)
{
"data": {
"@context": [
"https://www.w3.org/ns/activitystreams#",
"https://konbiniapi.com/ns/social#"
],
"type": "Note",
"id": "https://www.linkedin.com/posts/stripe_new-providers-on-stripe-projects-are-available-activity-7483253516766109696-xCr3",
"url": "https://www.linkedin.com/posts/stripe_new-providers-on-stripe-projects-are-available-activity-7483253516766109696-xCr3",
"entityId": "7483253516766109696",
"content": "New providers on Stripe Projects are available now:\n\nChatbase\nComposio\nNodeOps\nCustomer.io\nDatadog",
"published": "2026-07-15T20:17:50.459Z",
"likeCount": 185,
"replyCount": 39,
"attributedTo": {
"type": "Organization",
"id": "https://www.linkedin.com/company/stripe",
"url": "https://www.linkedin.com/company/stripe",
"name": "Stripe",
"preferredUsername": "stripe",
"followerCount": 1601918
},
"image": [
{
"type": "Image",
"url": "https://media.licdn.com/dms/image/v2/D4E05AQGnh5Qo2aZfGw/videocover-high/B4EZ9nRqAzJEBM-/0/1784144110876"
}
],
"attachment": [
{
"type": "Video",
"url": [
"https://dms.licdn.com/playlist/vid/v2/D4E05AQGnh5Qo2aZfGw/mp4-720p-30fp-crf28/B4EZ9nRqAzJEB8-/0/1784144111064"
],
"mediaType": "video/mp4",
"duration": 4,
"preview": {
"type": "Image",
"url": "https://media.licdn.com/dms/image/v2/D4E05AQGnh5Qo2aZfGw/videocover-high/B4EZ9nRqAzJEBM-/0/1784144110876"
}
}
],
"replies": [
{
"type": "Note",
"content": "Very excited to have Schematic in here and to be building with Stripe on this front!",
"published": "2026-07-15T20:28:36.758Z",
"likeCount": 5,
"attributedTo": {
"type": "Person",
"name": "Fynn Glover"
}
}
]
}
}