Edit a connected X/Twitter account's profile: display name, bio, location, website link, avatar image, and banner image. Acts only on handles this wallet connected. No signup, no API keys — every request is paid in USDC through the HTTP 402 flow, and the exact price is quoted before you pay.
One endpoint: POST /api/tools/x_profile over HTTP, or the x_profile tool over MCP at POST /api/mcp.
curl -X POST https://twitr.sh/api/tools/x_profile \
-H 'Content-Type: application/json' \
-d '{"action":"update_profile","account":"myhandle","description":"building in public 🛠️"}'
# → 402 Payment Required with the exact USDC price.
# Pay it (x402 on Base/Solana, MPP on Tempo) and retry the same request → 200 + data.
# x402-aware clients do both steps automatically.PREREQUISITE: connect an X account. Acts as a handle THIS wallet owns. action=update_profile (any of name, description, location, url) | set_avatar (media_url) | set_banner (media_url). account required. Payment settles before the change; Idempotency-Key required.
Fixed price per action, charged on acceptance. An Idempotency-Key header is required, so a retry replays the original result instead of charging twice. Full input schema in the OpenAPI spec.
Edit a connected X/Twitter account's profile: display name, bio, location, website link, avatar image, and banner image. Acts only on handles this wallet connected. It is one of 14 pay-per-call X/Twitter tools on twitr.sh, available over HTTP (POST /api/tools/x_profile) and MCP (tool name x_profile).
$0.012 per call in USDC. Fixed price per action, charged on acceptance. An Idempotency-Key header is required, so a retry replays the original result instead of charging twice.
POST https://twitr.sh/api/tools/x_profile with your input. The first response is HTTP 402 Payment Required carrying the exact price; pay it in USDC (x402 on Base or Solana, MPP on Tempo) and retry the identical request to get the data. No signup — the wallet is the account.
Yes. Call the x_profile tool via the MCP endpoint at POST https://twitr.sh/api/mcp — tools/list is free, tools/call is payment-gated with a JSON-RPC 402. The installable agent skill at https://twitr.sh/skill.md covers the full workflow.