Search LinkedIn posts by keyword. Returns post title, URL, publication date, author name, and a text snippet for each matching result. Results are sourced from public LinkedIn posts and articles.
curl "https://api.apidirect.io/v1/linkedin/posts?query=artificial%20intelligence&page=1&sort_by=most_recent" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"posts": [
{
"title": "@John Doe on LinkedIn",
"url": "https://linkedin.com/posts/...",
"date": "2024-01-15 14:30:00",
"author": "John Doe",
"source": "LinkedIn",
"snippet": "Exciting developments in artificial intelligence..."
}
],
"page": 1,
"count": 10
}