Skip to main content
OutX offers two API products that let you interact with LinkedIn programmatically. Choose based on your use case:

Social Listening API

The Social Listening API (this section) lets you create watchlists that continuously monitor LinkedIn for you. OutX scans LinkedIn for your keywords, people, and companies, then enriches posts with AI-generated categories and relevance scores. Best for: Ongoing monitoring, sales signal detection, competitor tracking, content discovery, automated engagement workflows.

Endpoints

CategoryEndpointsWhat You Can Do
Keyword WatchlistsPOST/GET/PUT/DELETE /api-keyword-watchlistMonitor LinkedIn posts by keywords with advanced filtering
People WatchlistsPOST/GET/PUT/DELETE /api-people-watchlistTrack posts and activity from specific LinkedIn profiles
Company WatchlistsPOST/GET/PUT/DELETE /api-company-watchlistMonitor company LinkedIn pages and posts
PostsGET /api-postsRetrieve and filter posts with 15+ parameters
LikePOST /api-likeLike posts programmatically
CommentPOST /api-commentComment on posts programmatically

LinkedIn API (Direct)

The LinkedIn API lets you make direct, on-demand calls to LinkedIn - fetch a profile, get someone’s posts, like or comment. No watchlists needed. Best for: One-off data retrieval, AI agent integrations, building custom workflows, profile enrichment pipelines. All LinkedIn API endpoints are async - you submit a request, get a task ID, and poll for results.
EndpointWhat You Can Do
POST /linkedin-agent/fetch-profileFetch any LinkedIn profile by slug
POST /linkedin-agent/fetch-profiles-postsGet posts from specific profiles by URN
POST /linkedin-agent/like-postLike a LinkedIn post
POST /linkedin-agent/comment-postComment on a LinkedIn post
GET /linkedin-agent/get-task-statusCheck async task results
See full LinkedIn API docs →

Base URL

All API requests should be made to:
https://api.outx.ai

Authentication

All endpoints require an API key in the x-api-key header:
x-api-key: YOUR_API_KEY
Get your API key at mentions.outx.ai/api-doc.

Prerequisites

Chrome extension required: At least one team member must have the OutX Chrome extension installed and active within the last 48 hours. Without this, API calls will return a 403 error. Learn more about the extension →

Rate Limits

PlanRate Limit
Free100 requests/hour
Pro1,000 requests/hour
EnterpriseCustom

Getting Started

1

Get Your API Key

Visit mentions.outx.ai/api-doc and click “Reveal API Key”
2

Install Chrome Extension

Install the OutX Chrome Extension on at least one team member’s browser
3

Make Your First Request

Need Help?


Learn More

Frequently Asked Questions

Q: What is the difference between the Social Listening API and the LinkedIn API? The Social Listening API is designed for ongoing monitoring. You create watchlists (keyword, people, or company), and OutX continuously scans LinkedIn, enriches posts with AI-generated categories and relevance scores, and makes them available for retrieval. The LinkedIn API (Direct) is for on-demand data access - you submit a request to fetch a profile or posts, get a task ID, and poll for results. Use Social Listening for continuous intelligence workflows, and the LinkedIn API for one-off lookups or AI agent integrations.
Q: Do I need a paid plan to use the API? API access is available on all plans, including the free plan. However, rate limits vary by plan: the free plan allows 100 requests per hour, the Pro plan allows 1,000 requests per hour, and Enterprise plans have custom limits. If you need higher throughput, contact support@outx.ai.
Q: Is there a webhook for real-time notifications when new posts arrive? OutX does not currently offer webhooks. The recommended approach is to use a polling pattern - periodically call the /api-posts endpoint with sort_by=recent_first to check for new posts. You can also set up Slack notifications through the OutX UI for real-time alerts without writing code. See the Webhook-Style Monitoring section in Use Cases for a polling example.