X Raid Small — bundled likes, reposts & comments on an X/Twitter post for $1 via x402 on Base
What it does
This endpoint triggers a small X (Twitter) raid via the WURK microtask platform. A single $1.00 USDC payment on Base (EIP-155:8453) creates a cluster of engagement jobs on a target X post: 20 likes, 10 reposts, and 10 comments, all performed by real human workers. The endpoint uses the x402 payment protocol — the first unauthenticated call returns HTTP 402 with a payment challenge; the caller signs and retries with a PAYMENT-SIGNATURE header to settle.
WURK is a microtask marketplace that connects AI agents with human workers for social-media engagement campaigns. The platform supports X/Twitter, Instagram, YouTube, Telegram, Discord, hey.lol, DexScreener, Pump.fun, and CoinMarketCap/CoinGecko voting. Payments settle in USDC on either Base or Solana chains, or via MPP on Tempo. This specific endpoint is the fixed-price "small" preset of the X Raid product at $0.025 per slot (40 total slots across the three job types).
The response after successful payment includes a job/raid ID and a status URL for tracking completion. Workers submit screenshot proof of engagement, and the platform verifies task completion before releasing rewards.
Capabilities
Use cases
- —Boost a new tweet's visibility with bundled likes, reposts, and comments from real users
- —AI agent autonomously purchasing social engagement for a managed account
- —Crypto project promoting an announcement tweet with organic-looking engagement
- —Growth hacking a post to trigger algorithmic amplification on X
Fit
Best for
- —AI agents needing programmatic social engagement on X/Twitter
- —Crypto projects wanting quick organic-style tweet boosts
- —Developers building automated social growth workflows with x402 payments
Not for
- —High-volume enterprise social campaigns (consider medium/large presets or custom raids)
- —Platforms requiring guaranteed delivery SLAs — this is a crowdsourced microtask system
- —Non-X/Twitter platforms (separate endpoints exist for Instagram, YouTube, etc.)
Quick start
# First call returns 402 with payment challenge
curl -X POST "https://wurkapi.fun/base/xraid/small?url=https://x.com/user/status/123456789"
# Parse the x402 challenge, sign payment, then retry:
curl -X POST "https://wurkapi.fun/base/xraid/small?url=https://x.com/user/status/123456789" \
-H "Payment-Signature: <signed-credential>"Example
Response
{
"ok": true,
"jobs": [
{
"kind": "xlikes",
"slots": 20,
"amountUsd": 0.5
},
{
"kind": "reposts",
"slots": 10,
"amountUsd": 0.25
},
{
"kind": "comments",
"slots": 10,
"amountUsd": 0.25
}
],
"kind": "xraid-small",
"paid": true,
"network": "base",
"totalUsd": 1,
"perSlotUsd": 0.025
}Endpoint
Quality
Live 402 challenge captured with full x402 v2 payload, OpenAPI schema available, example output provided in bazaar extension, clear pricing ($1.00 USDC). Minor gaps: no dedicated docs page (404), response schema is from the bazaar extension example rather than a formal documented contract.
Warnings
- —Service involves purchasing social media engagement which may violate platform ToS on X/Twitter
- —The /docs, /pricing, /api paths all return 404 — documentation lives at docs.wurk.fun instead
- —Delivery depends on human worker availability; no guaranteed SLA is documented
Citations
- —X Raid Small costs $1.00 USDC and includes 20 likes, 10 reposts, 10 commentshttps://wurkapi.fun
- —Pricing is $0.025 USDC per slothttps://wurkapi.fun
- —Payment settles in USDC on Base (chain 8453) to address 0xF00DAF15713e82fBb7bDC4b818444D93D655DE96https://wurkapi.fun/base/xraid/small
- —x402 version 2 challenge with exact scheme, 60s timeouthttps://wurkapi.fun/base/xraid/small
- —OpenAPI spec version 1.1.0 describes the WURK platform endpointshttps://wurkapi.fun