Skip to main content
The OutX API lets you interact with LinkedIn programmatically — monitor keywords, track people and companies, fetch profiles, and automate engagement. All endpoints share the same base URL and authentication.

API Overview

The API is organized into two groups:

Watchlists & Engagement

Create watchlists that continuously scan LinkedIn. OutX enriches posts with AI-generated categories and relevance scores.
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 Data

Fetch profiles, get posts, and engage — no watchlists needed. All LinkedIn Data endpoints are async: submit a request, get a task ID, then 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 LinkedIn Data endpoints →

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

Watchlists & Engagement endpoints are for ongoing monitoring — you create watchlists (keyword, people, or company) and OutX continuously scans LinkedIn, enriches posts with AI categories and relevance scores. LinkedIn Data endpoints are for on-demand access — fetch a profile, get posts, like or comment as one-off async tasks. Use watchlists for continuous intelligence, and LinkedIn Data for direct lookups or AI agent integrations.
API access is available on all plans, including the free plan. Rate limits vary: Free allows 100 requests/hour, Pro allows 1,000 requests/hour, and Enterprise plans have custom limits. Contact support@outx.ai for higher throughput.
OutX does not currently offer webhooks. Use a polling pattern — periodically call /api-posts with sort_by=recent_first to check for new posts. You can also set up Slack notifications through the OutX UI. See the Webhook-Style Monitoring use case.