ColinBalin/threads-profile-enrichment
0
Threads Profile Enrichment API
Pull a Meta Threads profile into clean JSON.
Try it above with the example input zuck, then read on for production usage.
What this is
A free interactive demo of one endpoint from the GoCreative AI x402 API — a pay-per-call API platform for AI agents (Claude Code, Cursor, custom agents).
- Endpoint:
GET /v1/enrich/threads/{input} - Price (production): $0.005 per call
- Auth: x402 (USDC on Base) — no API keys, no signup
- Free tier here: 5 calls/day per IP via
/demo
Get unlimited access
Fund a Base wallet with $1 USDC and call this endpoint (plus 144 others) without limits:
Use it from your agent
import httpx
r = httpx.get("https://api.gocreativeai.com/v1/enrich/threads/zuck")
print(r.json())Or natively via MCP — add to ~/.claude/mcp_servers.json:
{
"mcpServers": {
"gocreative": {
"url": "https://api.gocreativeai.com/mcp",
"headers": {"X-Wallet-Key": "0x_YOUR_BASE_WALLET_KEY"}
}
}
}Built by GoCreative AI. Pay-per-call APIs for AI agents.
