Buy a medium X/Twitter raid (likes, reposts, comments, bookmarks) via x402 on Base for $2.50 USDC.
What it does
This endpoint triggers a medium-sized X (Twitter) raid through the WURK microtask platform. A single x402 payment of $2.50 USDC on Base creates a cluster of human-performed engagement jobs on a target tweet: 50 likes, 20 reposts, 25 comments, and 5 bookmarks. Real human workers complete each task and submit proof.
The payment flow follows the x402 protocol: an initial GET or POST request without payment returns HTTP 402 with a payment challenge in the `WWW-Authenticate` header. The caller signs and submits the USDC payment credential, then retries the request with the `Authorization: Payment <credential>` header. On success, the response includes a `Payment-Receipt` header and a JSON body with job/raid IDs and a status URL for tracking.
The endpoint accepts a `url` query parameter pointing to the target X post. Pricing is fixed at $2.50 USDC ($0.025 per slot × 100 total slots). The payment is routed to address `0xF00DAF15713e82fBb7bDC4b818444D93D655DE96` on Base (EIP-155 chain 8453) using USDC (`0x833589fcd6edb6e08f4c7c32d4f71b54bda02913`).
Capabilities
Use cases
- —Boost a tweet's visibility with bundled likes, reposts, comments, and bookmarks
- —Drive organic-looking engagement on X/Twitter posts for crypto projects
- —Automate social media growth campaigns from an AI agent
- —Increase social proof on a specific X post before a product launch
- —Run coordinated engagement campaigns paid per-request with USDC
Fit
Best for
- —AI agents needing programmatic social engagement on X/Twitter
- —Crypto projects wanting human-verified tweet engagement
- —Developers building automated social growth workflows with x402 payments
Not for
- —Engagement on platforms other than X/Twitter (use separate WURK endpoints for Instagram, YouTube, etc.)
- —Users who need free or API-key-based access without crypto payments
- —Organic community building without paid engagement
Quick start
# 1. Get the payment challenge
curl -X GET 'https://wurkapi.fun/base/xraid/medium?url=https://x.com/user/status/123456'
# Returns 402 with WWW-Authenticate header containing payment details
# 2. Sign the USDC payment and retry
curl -X GET 'https://wurkapi.fun/base/xraid/medium?url=https://x.com/user/status/123456' \
-H 'Authorization: Payment <signed-credential>'Example
Response
{
"ok": true,
"jobs": [
{
"kind": "xlikes",
"slots": 50,
"amountUsd": 1.25
},
{
"kind": "reposts",
"slots": 20,
"amountUsd": 0.5
},
{
"kind": "comments",
"slots": 25,
"amountUsd": 0.625
},
{
"kind": "bookmarks",
"slots": 5,
"amountUsd": 0.125
}
],
"kind": "xraid-medium",
"paid": true,
"network": "base",
"totalUsd": 2.5,
"perSlotUsd": 0.025
}Endpoint
Quality
Live 402 challenge captured with full payment details; OpenAPI schema is comprehensive; example output provided in the bazaar extension; fixed pricing clearly documented. Docked slightly because the /docs page returns 404 and there are no standalone usage examples beyond the challenge metadata.
Warnings
- —This endpoint facilitates paid social media engagement which may violate X/Twitter's Terms of Service.
- —The /docs path on wurkapi.fun returns 404; documentation is available at docs.wurk.fun instead.
Citations
- —Medium X raid costs $2.50 USDC (fixed price) and includes 50 likes, 20 reposts, 25 comments, 5 bookmarkshttps://wurkapi.fun
- —Pricing is $0.025 USDC per slot for X raidshttps://wurkapi.fun
- —Payment is on Base chain (EIP-155:8453) to address 0xF00DAF15713e82fBb7bDC4b818444D93D655DE96 using USDC 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913https://wurkapi.fun/base/xraid/medium
- —The x402 challenge returns amount 2500000 (6 decimals = $2.50) with x402Version 2https://wurkapi.fun/base/xraid/medium
- —OpenAPI spec version 1.1.0 describes the /mpp/xraid/medium endpoint as 'Preset X raid medium' with fixed price 2.500000https://wurkapi.fun