social_research
Pull read-only structured public data from social platforms and ad libraries for competitor analysis, market research, audience listening, and trend discovery.
Instructions
Pull read-only structured public data from social platforms and ad libraries — competitor ads (Meta/Facebook + Instagram, LinkedIn), profiles, posts, comments, transcripts, hashtag/keyword search, and subreddit / trend discovery. Two steps: call list_research_sources FIRST to see the platforms, their endpoints, and each endpoint's params; then call this with platform, endpoint, and a params object built from that endpoint's required/optional params. Returns the source's structured JSON in data (the shape varies by endpoint), or a structured error naming the missing or unknown params. Use for competitor and market research, audience listening, and trend discovery — this is read-only public data, not posting and not private data. Set dry_run=true to preview the exact request without spending.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | No | The endpoint's query parameters as an object — e.g. {"handle": "nike"} or {"companyName": "Nike", "country": "US"}. list_research_sources lists the required and optional params for each endpoint; a missing required param returns a structured error. | |
| dry_run | No | If true, return the request that would be sent (key masked), make no API call. | |
| endpoint | Yes | The endpoint on that platform — e.g. 'company_ads', 'profile', 'posts', 'comments', 'search', 'hashtag'. Call list_research_sources for each platform's endpoints. | |
| platform | Yes | The platform to query — e.g. 'meta_ad_library', 'instagram', 'tiktok', 'youtube', 'reddit', 'x', 'linkedin', 'linkedin_ads'. Call list_research_sources for the full set. |