xpoz-social-search
Search Twitter, Instagram, and Reddit posts in real time. Find social media mentions, track hashtags, discover influencers, and analyze engagement — 1.5B+ posts indexed. Social listening, brand monitoring, and competitor research made easy for AI agents.
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Install command
npx @skill-hub/cli install openclaw-skills-xpoz-social-search
Repository
Skill path: skills/atyachin/xpoz-social-search
Search Twitter, Instagram, and Reddit posts in real time. Find social media mentions, track hashtags, discover influencers, and analyze engagement — 1.5B+ posts indexed. Social listening, brand monitoring, and competitor research made easy for AI agents.
Open repositoryBest for
Primary workflow: Research & Ops.
Technical facets: Full Stack, Data / AI, Designer, Integration.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: openclaw.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install xpoz-social-search into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/openclaw/skills before adding xpoz-social-search to shared team environments
- Use xpoz-social-search for development workflows
Works across
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
---
name: xpoz-social-search
description: "Search Twitter, Instagram, and Reddit posts in real time. Find social media mentions, track hashtags, discover influencers, and analyze engagement — 1.5B+ posts indexed. Social listening, brand monitoring, and competitor research made easy for AI agents."
homepage: https://xpoz.ai
metadata:
{
"openclaw":
{
"requires": { "bins": ["mcporter"], "skills": ["xpoz-setup"], "network": ["mcp.xpoz.ai"], "credentials": "Xpoz account (free tier) — auth via xpoz-setup skill (OAuth 2.1)" },
"install": [{"id": "node", "kind": "node", "package": "mcporter", "bins": ["mcporter"], "label": "Install mcporter (npm)"}],
},
}
tags:
- social-media
- search
- twitter
- instagram
- reddit
- mcp
- xpoz
- research
- intelligence
- discovery
- social-search
- twitter-search
- social-listening
- brand-monitoring
- hashtag
- mentions
- influencer
- engagement
- viral
- trending
---
# Xpoz Social Search
**Multi-platform social search: 1.5B+ posts across Twitter, Instagram, Reddit.**
Search posts, find people, discover conversations. Built on Xpoz MCP.
## Setup
Run `xpoz-setup` skill. Verify: `mcporter call xpoz.checkAccessKeyStatus`
## Tool Reference
| Tool | Platform | Purpose |
|------|----------|---------|
| `getTwitterPostsByKeywords` | Twitter | Search tweets |
| `getInstagramPostsByKeywords` | Instagram | Search posts |
| `getRedditPostsByKeywords` | Reddit | Search posts |
| `getTwitterUsersByKeywords` | Twitter | Find users |
| `getInstagramUsersByKeywords` | Instagram | Find users |
| `getRedditUsersByKeywords` | Reddit | Find users |
| `getTwitterUser` | Twitter | Profile by username/id |
| `getInstagramUser` | Instagram | Profile by username/id |
| `getRedditUser` | Reddit | Profile by username |
| `searchTwitterUsers` | Twitter | Search by name |
| `checkOperationStatus` | — | **Poll for results** |
| `getRedditSubredditsByKeywords` | Reddit | Find subreddits |
**Params:** `query`, `startDate`/`endDate` (YYYY-MM-DD), `limit`, `fields`
## Patterns
**Search posts:**
```bash
mcporter call xpoz.getTwitterPostsByKeywords query="MCP" startDate=2026-01-01
mcporter call xpoz.checkOperationStatus operationId=op_abc # Poll every 5s
```
**Find people:**
```bash
mcporter call xpoz.getTwitterUsersByKeywords query='"open source" AND LLM'
```
**Profile:**
```bash
mcporter call xpoz.getTwitterUser identifier=elonmusk identifierType=username
```
**Boolean:** `AND`, `OR`, `NOT`, `"exact"`, `()`
```bash
query="Tesla AND cars NOT stock"
```
**CSV export:** Use `dataDumpExportOperationId` from search, poll for URL (up to 64K rows).
## Examples
**Competitive intel:**
```bash
mcporter call xpoz.getTwitterPostsByKeywords query="CompetitorName"
mcporter call xpoz.getTwitterUsersByKeywords query="CompetitorName"
```
**Influencers:**
```bash
mcporter call xpoz.getInstagramUsersByKeywords query="fitness transformation"
```
**Communities:**
```bash
mcporter call xpoz.getRedditSubredditsByKeywords query="startup"
```
## Notes
⚠️ **Always poll** `checkOperationStatus` — searches return `operationId`, not data
🚀 **Use `fields`** for performance
📊 **CSV for scale** via `dataDumpExportOperationId`
📅 **Dates:** `YYYY-MM-DD` (current: 2026)
**Free tier:** 100 searches/mo, 1K results/search | [xpoz.ai](https://xpoz.ai)
---
## Skill Companion Files
> Additional files collected from the skill directory layout.
### _meta.json
```json
{
"owner": "atyachin",
"slug": "xpoz-social-search",
"displayName": "Xpoz Social Search",
"latest": {
"version": "1.5.0",
"publishedAt": 1770890945970,
"commit": "https://github.com/openclaw/skills/commit/1d4652abcc126fd9699cb2ce98d17ff7f66ad096"
},
"history": [
{
"version": "1.3.0",
"publishedAt": 1770848743384,
"commit": "https://github.com/openclaw/skills/commit/0405ad1e4b01add1e4ce5161a3ee6112b539f0d5"
}
]
}
```