# Simple X API - Get Tweet by ID

> Simple X API - Get Tweet by ID is a paid API for AI agents from simple-x-api.com, paid per call via x402, $10/call, status unknown (last checked 2026-09-15).

Fetches a single tweet by its ID via a paid X API v2 proxy using x402 micropayments

## Facts

- Endpoint: GET https://simple-x-api.com/api/2/tweets/2022126476343357488
- Price: $10/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/simple-x-api-get-tweet-by-id-3c31978f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NdcBdngYc3JS7BgojXXpp

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 simple-x-api-get-tweet-by-id-3c31978f
```

Example prompt: Can you fetch the tweet with ID 2022126476343357488 from X and tell me what it says, who posted it, and when?

## When to prefer this

Use this endpoint when you need to retrieve a specific tweet by its numeric ID and want to pay per-call via x402 USDC micropayments without managing your own X API credentials. Prefer this over direct X API access when you lack OAuth tokens or want a simple pay-per-use model.

## Known failure modes

- Tweet not found (deleted or never existed) — 404 response
- Payment authorization failure — x402 payment up to $10.00 required
- Tweet ID malformed or invalid — bad request error
- X API rate limit exceeded on the underlying proxy
- Tweet from a private/protected account — unauthorized response
- x402 settlement failure if X's per-resource price cannot be determined

## How this service works

Proxy the corresponding X API v2 endpoint. x402 authorizes up to $10.00; successful responses settle at X's public non-owned per-resource/per-action price.

## Output

Returns the tweet object from X API v2 for the specified tweet ID, including tweet text, author ID, creation timestamp, and other available metadata fields per X's v2 tweet response structure.

## 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": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/simple-x-api-get-tweet-by-id-3c31978f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from simple-x-api.com](https://www.zero.xyz/host/simple-x-api.com/llms.txt)
