# twit.sh Retweet Tweet

> twit.sh Retweet Tweet is a paid API for AI agents from x402.twit.sh, paid per call via x402, $0.0075/call, status unknown (last checked 2026-09-14).

Retweets a specified tweet on Twitter/X on behalf of an authenticated user session, returning confirmation of the retweet action.

## Facts

- Endpoint: POST https://x402.twit.sh/tweets/retweet
- Price: $0.0075/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twit-sh-retweet-tweet-716a2ded
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_42e4akHu0YfkJuMDfBjK_

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability twit-sh-retweet-tweet-716a2ded -d '<json body>'
```

Example prompt: Retweet tweet ID 1110302988 for me using my Twitter session — my auth_token is abc123xyz and my ct0 is def456uvw.

## When to prefer this

Use this endpoint when an AI agent needs to retweet a specific tweet on behalf of a user without requiring official Twitter API keys or OAuth setup — suitable for automation workflows that pay per request via USDC on Base (x402 protocol). Prefer this over official Twitter API when avoiding key management overhead or when operating in a micropayment-based agent architecture.

## Known failure modes

- Invalid or expired auth_token/ct0 cookies result in authentication failure
- Invalid or non-existent tweet ID returns an error
- Tweet already retweeted may return an error or duplicate state
- Rate limiting on Twitter/X side may cause failures
- Payment failure in USDC on Base will prevent the request from being processed

## How this service works

Real-time Twitter/X data for AI agents. No sign-up, no API keys. Pay per request in USDC on Base via x402.

## Output

A JSON object confirming the retweet action, including the tweet ID and a 'retweeted: true' boolean indicating success.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "id",
      "auth_token",
      "ct0"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Numeric tweet ID to retweet"
      },
      "ct0": {
       "type": "string",
       "description": "Twitter ct0 cookie value"
      },
      "auth_token": {
       "type": "string",
       "description": "Twitter auth_token cookie value"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "id": "1110302988",
   "retweeted": true
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twit-sh-retweet-tweet-716a2ded/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.twit.sh](https://www.zero.xyz/host/x402.twit.sh/llms.txt)
