GET /api-watchlists lists what you already have before you add more.
The four types
All four types share one CRUD pattern (POST create, GET read, PUT update, DELETE delete on the same URL) and all four count toward the same plan watchlist limit (a
402 error names your limit; check remaining quota first with GET /api-team).
Posts collected by any watchlist type are read from the same endpoint: GET /api-posts?watchlist_id=.... The response shape adapts automatically to the watchlist’s platform.
Task-to-endpoint map
Recipe: one topic on LinkedIn and Reddit
Send the sameprompt to both endpoints. OutX generates platform-appropriate keywords and intent labels for each in the background.
201 with its own id. Save both. To read the feeds:
Differences that matter to an agent
- Keyword and Reddit watchlists are twins. Same body shape on create and update (
keywords,prompt,labels,fetchFreqInHours,slack_webhook_url,append), same intent label system. The platform, the endpoint, the default fetch frequency (12h vs 24h) and the backfill differ: a keyword watchlist backfills recent posts on create and on every keyword or prompt change, and a Reddit watchlist never backfills at all. - People and company watchlists have no Reddit equivalent and no keywords, prompts, or intent labels. They track a named set of profiles or company pages, edited with
add_profiles/remove_profiles(or the company equivalents) onPUT. They hold up to 200 members each, under a team-wide allowance. They do takefetchFreqInHourson create and update, the same as keyword and Reddit watchlists. - Collection runs through the OutX Chrome extension. For every watchlist type, at least one team member must have the extension installed and active (it must have checked in within the last 48 hours); otherwise API requests return
403 Plugin installation required. - Only the keyword (LinkedIn) type backfills on create. A new LinkedIn keyword watchlist backfills recent matching posts automatically, so it is usually non-empty within minutes. Reddit, people, and company watchlists start filling on their first fetch cycle.
Next steps
Design your watchlists
How many to create and what goes in each one
List all watchlists
Every watchlist of every type in one call
Create Keyword Watchlist
LinkedIn keyword tracking, prompt or direct mode
Create Reddit Watchlist
The Reddit twin of the keyword watchlist
Intent Labels Explained
How posts get classified and what default labels do
Get Posts
Read and filter any watchlist’s feed

