Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Xpersona Agent
Fetch structured data from social media and web platforms via Parseium APIs. Use when users want to extract profiles, posts, videos, comments, or other data from Instagram, TikTok, YouTube, Reddit, LinkedIn, Zillow, Indeed, or App Store. --- name: parseium-skill description: Fetch structured data from social media and web platforms via Parseium APIs. Use when users want to extract profiles, posts, videos, comments, or other data from Instagram, TikTok, YouTube, Reddit, LinkedIn, Zillow, Indeed, or App Store. license: MIT metadata: author: Parseium website: https://www.parseium.com --- Parseium API Guide for AI Agents Parseium provides pre-built APIs
git clone https://github.com/pauldelmann/parseium-skill.gitOverall rank
#30
Adoption
1 GitHub stars
Trust
Unknown
Freshness
Apr 15, 2026
Freshness
Last checked Apr 15, 2026
Best For
parseium-skill is best for obtain, still, pagination workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
Fetch structured data from social media and web platforms via Parseium APIs. Use when users want to extract profiles, posts, videos, comments, or other data from Instagram, TikTok, YouTube, Reddit, LinkedIn, Zillow, Indeed, or App Store. --- name: parseium-skill description: Fetch structured data from social media and web platforms via Parseium APIs. Use when users want to extract profiles, posts, videos, comments, or other data from Instagram, TikTok, YouTube, Reddit, LinkedIn, Zillow, Indeed, or App Store. license: MIT metadata: author: Parseium website: https://www.parseium.com --- Parseium API Guide for AI Agents Parseium provides pre-built APIs Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Pauldelmann
Artifacts
0
Benchmarks
0
Last release
Unpublished
Install & run
git clone https://github.com/pauldelmann/parseium-skill.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Pauldelmann
Protocol compatibility
OpenClaw
Adoption signal
1 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
text
GET https://api.parseium.com/v1/apis
json
[
{
"id": "instagram-profile",
"name": "Instagram Profile",
"url": "/v1/instagram-profile",
"description": "Extract profile metadata, followers, posts from Instagram",
"credits": 1
},
...
]text
GET https://api.parseium.com/v1/apis/{id}text
GET https://api.parseium.com/v1/apis/instagram-profile
text
GET https://api.parseium.com/credits X-API-Key: your_api_key
json
{
"creditBalance": 1000,
"concurrency": 5
}Editorial read
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Fetch structured data from social media and web platforms via Parseium APIs. Use when users want to extract profiles, posts, videos, comments, or other data from Instagram, TikTok, YouTube, Reddit, LinkedIn, Zillow, Indeed, or App Store. --- name: parseium-skill description: Fetch structured data from social media and web platforms via Parseium APIs. Use when users want to extract profiles, posts, videos, comments, or other data from Instagram, TikTok, YouTube, Reddit, LinkedIn, Zillow, Indeed, or App Store. license: MIT metadata: author: Parseium website: https://www.parseium.com --- Parseium API Guide for AI Agents Parseium provides pre-built APIs
Parseium provides pre-built APIs for extracting structured data from social media and web platforms. This guide explains how to discover, understand, and use these APIs.
Base URL: https://api.parseium.com
An API key is required to use Parseium APIs. Users can obtain one at:
https://www.parseium.com/api-key
If the user hasn't provided an API key, prompt them to get one from the link above before making any data requests. The discovery endpoints (/v1/apis, /v1/apis/{id}) work without a key, so you can still help users explore available APIs while they set up their account.
GET /v1/apisGET /v1/apis/{id}GET /creditsGET|POST /v1/{api-id}?api_key=YOUR_KEY¶m=valueAll data-fetching endpoints require an API key. Pass it via:
X-API-Key: your_api_key?api_key=your_api_keyGET https://api.parseium.com/v1/apis
Returns JSON array of available APIs:
[
{
"id": "instagram-profile",
"name": "Instagram Profile",
"url": "/v1/instagram-profile",
"description": "Extract profile metadata, followers, posts from Instagram",
"credits": 1
},
...
]
GET https://api.parseium.com/v1/apis/{id}
Returns markdown documentation with:
Example:
GET https://api.parseium.com/v1/apis/instagram-profile
GET https://api.parseium.com/credits
X-API-Key: your_api_key
Response:
{
"creditBalance": 1000,
"concurrency": 5
}
creditBalance: Remaining credits for API callsconcurrency: Max simultaneous requests allowed| Platform | Endpoints | |----------|-----------| | Instagram | instagram-profile, instagram-post, instagram-posts, instagram-reels | | TikTok | tiktok-profile, tiktok-video, tiktok-comments | | YouTube | youtube-channel, youtube-video, youtube-transcript, youtube-comments, youtube-channel-videos, youtube-channel-shorts, youtube-search | | Reddit | reddit-post, reddit-user | | LinkedIn | linkedin-profile, linkedin-company, linkedin-post | | Zillow | zillow-search, zillow-details | | Other | indeed-job, app-store, app-store-search |
All endpoints cost 1 credit per request.
GET https://api.parseium.com/v1/instagram-profile?api_key=YOUR_KEY&username=nasa
POST https://api.parseium.com/v1/instagram-profile
X-API-Key: YOUR_KEY
Content-Type: application/json
{"username": "nasa"}
Successful responses include:
X-Credits-Used: Credits consumed by this requestX-Credits-Remaining: Remaining credit balance| Code | Meaning | |------|---------| | 400 | Bad request - missing/invalid parameters | | 401 | Unauthorized - invalid/missing API key | | 402 | Payment required - insufficient credits | | 404 | Not found - resource doesn't exist | | 429 | Too many requests - rate/concurrency limit exceeded | | 502 | Bad gateway - upstream service error |
Many endpoints support pagination via cursor, continuation, or next_url parameters. Check the specific API docs for details:
GET https://api.parseium.com/v1/apis/{id}
/v1/apis to see available endpoints/v1/apis/{id} for specific endpoint docs/credits to verify sufficient balance# 1. Check available credits
curl -H "X-API-Key: YOUR_KEY" https://api.parseium.com/credits
# 2. Fetch profile
curl -H "X-API-Key: YOUR_KEY" "https://api.parseium.com/v1/instagram-profile?username=nasa"
Response includes identity, metrics, account type, business info, recent posts, and pagination cursor.
/v1/apis, /v1/apis/{id}): 30 requests/minute per IP/credits)| Task | Endpoint | Key Parameter | |------|----------|---------------| | Get someone's follower count | instagram-profile, tiktok-profile, youtube-channel | username/handle | | Extract video transcript for summarization | youtube-transcript | video_id or url | | Get post engagement metrics | instagram-post, tiktok-video, reddit-post | url | | Research a company | linkedin-company | url or slug | | Search for properties | zillow-search | query (city/zip) | | Get job posting details | indeed-job | job_key | | Find apps | app-store-search | query |
For detailed parameters and response schemas, always fetch /v1/apis/{id}.
Some workflows require multiple API calls:
Instagram pagination:
instagram-profile?username=X → returns user_id in identityinstagram-posts?user_id=Y&cursor=Z → use user_id for paginationYouTube deep dive:
youtube-channel?handle=X → get channel_idyoutube-channel-videos?channel_id=Y → list videosyoutube-video?video_id=Z → get specific video detailsyoutube-transcript?video_id=Z → get transcript for summarizationZillow property research:
zillow-search?query=Austin TX → get listing URLszillow-details?url=Y → get full property details| Error | Action | |-------|--------| | 401 Unauthorized | API key missing/invalid. Ask user to provide key or get one at https://www.parseium.com/api-key | | 402 Payment Required | Insufficient credits. Ask user to add credits at https://www.parseium.com | | 404 Not Found | Resource doesn't exist (deleted account, private profile, etc). Inform user. | | 429 Too Many Requests | Rate/concurrency limit hit. Wait a few seconds and retry, or reduce parallel requests. | | 502 Bad Gateway | Upstream platform issue. Retry once after brief delay. If persistent, the platform may be blocking. |
/credits before batch operations to ensure sufficient balanceAll data endpoints return JSON. The /v1/apis/{id} endpoint returns markdown documentation. Successful responses include X-Credits-Used and X-Credits-Remaining headers for tracking usage.
Some endpoints may take 5-15 seconds due to upstream fetching. This is normal for:
Don't timeout requests prematurely. If building user-facing features, show a loading state.
Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.
Machine interfaces
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/pauldelmann-parseium-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/pauldelmann-parseium-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/pauldelmann-parseium-skill/trust"
Operational fit
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/pauldelmann-parseium-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/pauldelmann-parseium-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/pauldelmann-parseium-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/pauldelmann-parseium-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/pauldelmann-parseium-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/pauldelmann-parseium-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T04:42:53.376Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "obtain",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "still",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "pagination",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:obtain|supported|profile capability:still|supported|profile capability:pagination|supported|profile"
}Facts JSON
[
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Pauldelmann",
"href": "https://github.com/pauldelmann/parseium-skill",
"sourceUrl": "https://github.com/pauldelmann/parseium-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T05:21:22.124Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/pauldelmann-parseium-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/pauldelmann-parseium-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T05:21:22.124Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "1 GitHub stars",
"href": "https://github.com/pauldelmann/parseium-skill",
"sourceUrl": "https://github.com/pauldelmann/parseium-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T05:21:22.124Z",
"isPublic": true
},
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/pauldelmann-parseium-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/pauldelmann-parseium-skill/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to parseium-skill and adjacent AI workflows.