Skip to main content

Get Post Details

GET /get-post-details

Get detailed information for a specific LinkedIn post.

Pricing

1 credit per call.

Parameters

ParameterTypeRequiredDescription
urnstringYesPost URN (numeric ID, e.g., 7654321098765432100)

Example Request

curl --request GET \
--url 'https://api.infoplug.io/get-post-details?urn=7654321098765432100' \
--header 'X-INFOPLUG-API-KEY: YOUR_API_KEY'

Example Response

{
"data": {
"urn": "7654321098765432100",
"author": {
"name": "John Doe",
"headline": "Software Engineer at Tech Corp",
"linkedin_url": "https://www.linkedin.com/in/johndoe/",
"profile_picture": "https://media.licdn.com/..."
},
"text": "Excited to share my latest project...",
"posted_at": "2024-01-15T10:30:00Z",
"reactions_count": 500,
"comments_count": 75,
"reposts_count": 25,
"media": [
{
"type": "image",
"url": "https://media.licdn.com/..."
}
]
}
}