cURL
curl --request POST \ --url https://api.linkupapi.com/v1/posts/search \ --header 'Content-Type: application/json' \ --header 'x-api-key: <x-api-key>' \ --data '{ "post_type": "<string>", "sort_by": "<string>", "country": "<string>", "keyword": "<string>", "post_date": "<string>", "linkedin_url": "<string>", "total_results": 123, "start_page": 123, "end_page": 123, "login_token": "<string>" }'
{ "status": "success", "data": { "total_results": 1, "pagination": { "start_page": 1, "end_page": 1, "results_per_page": 50, "pages_fetched": 1 }, "posts": [ { "shareAudience": "PUBLIC", "shareUrl": "https://www.linkedin.com/posts/user_post-activity-123", "text": "Example post content", "created_time": "2023-04-01T12:00:00", "numLikes": 50, "numComments": 10, "numShares": 5, "actor_name": "John Doe", "actor_description": "Software Engineer at Tech Company", "actor_image": "https://media.licdn.com/dms/image/profile.jpg", "actor_profile_url": "https://www.linkedin.com/in/johndoe", "post_images": [ "https://media.licdn.com/dms/image/post1.jpg" ] } ] } }
Extract and search LinkedIn posts with various filters
Show Properties
Show Pagination Object
Show Post Object
total_results
start_page
end_page
Was this page helpful?