# twit.sh Bookmark Tweet

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

Bookmarks a specific tweet on Twitter/X using the authenticated user's session credentials

## Facts

- Endpoint: POST https://x402.twit.sh/tweets/bookmark
- Price: $0.0025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twit-sh-bookmark-tweet-a12415e2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FflRg3og5NlfN3mqZx1QF

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-bookmark-tweet-a12415e2 -d '<json body>'
```

Example prompt: Bookmark tweet ID 1110302988 for me on X using my auth_token and ct0 cookie so I can find it later.

## When to prefer this

Use this endpoint when an AI agent needs to programmatically save a tweet to a user's X bookmarks using existing session credentials, without setting up Twitter's official API keys. Ideal for automation workflows that monitor tweets and save relevant ones, paying per-request in USDC.

## Known failure modes

- Invalid or expired auth_token/ct0 cookies result in authentication failure
- Missing required tweet ID returns a validation error
- Tweet ID does not exist or is inaccessible returns not found error
- Rate limiting by Twitter/X backend may cause request failures
- Payment failure (insufficient USDC) blocks the request before it reaches Twitter

## 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

Returns a JSON object confirming the bookmark action, including the tweet ID and a boolean 'bookmarked: true' field 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 bookmark"
      },
      "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",
   "bookmarked": true
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twit-sh-bookmark-tweet-a12415e2/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)
