# X Data Gateway — Get Quote Tweets for a Tweet

> X Data Gateway — Get Quote Tweets for a Tweet is a paid API for AI agents from x-data-gateway.annushka1190.workers.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Fetches the list of quote tweets (retweets with commentary) for a given tweet ID on X/Twitter, paying per call in USDC via x402 on Base.

## Facts

- Endpoint: GET https://x-data-gateway.annushka1190.workers.dev/tweets/quotes
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x-data-gateway-get-quote-tweets-for-a-tweet-f1a1244e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DKBQy0BtZiwj6Tl2ydYHg

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 x-data-gateway-get-quote-tweets-for-a-tweet-f1a1244e
```

Example prompt: Can you pull all the quote tweets for tweet ID 1234567890123456789 on X so I can see what people are saying about it?

## When to prefer this

Use this endpoint when you need to retrieve quote tweets (retweets with commentary) for a specific tweet without managing X API credentials. Prefer it over direct X API access when you want keyless pay-per-call access in USDC, or when building agent workflows on Base/Solana that need X social data alongside crypto market intel from the same gateway.

## Known failure modes

- Invalid or non-existent tweet ID returns empty data or error
- Tweet has no quote tweets — returns empty data array
- Payment failure via x402 — returns 402 Payment Required if USDC balance is insufficient
- Rate limiting from upstream X API — may return 429 or error
- Private/suspended accounts' quote tweets may be omitted

## How this service works

Posts that quote a given tweet ID (via search quoted filter). e.g. GET /tweets/quotes?id=20

## Output

Returns a JSON object containing quote tweet data for the specified tweet ID, including tweet text, author profile information, engagement metrics, and referenced tweet details for each quote tweet found.

## 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",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Quoted tweet ID"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x-data-gateway-get-quote-tweets-for-a-tweet-f1a1244e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x-data-gateway.annushka1190.workers.dev](https://www.zero.xyz/host/x-data-gateway.annushka1190.workers.dev/llms.txt)
