# glim.sh Twitter Quote Tweets

> glim.sh Twitter Quote Tweets is a paid API for AI agents from glim.sh, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-13).

Fetches the list of quote tweets for a given Twitter/X tweet by its ID

## Facts

- Endpoint: POST https://glim.sh/api/v1/twitter/tweets/:id/quotes
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glim-sh-twitter-quote-tweets-72f3dc57
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XYq15lmhp2wiF4sXRabh3

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 glim-sh-twitter-quote-tweets-72f3dc57 -d '<json body>'
```

Example prompt: Can you pull all the quote tweets for tweet ID 1234567890123456789 so I can see who's been responding to it with their own commentary?

## When to prefer this

Use this endpoint when you need to retrieve quote tweet activity for a specific tweet ID on Twitter/X, particularly for social listening, engagement analysis, or tracking how content is being shared with commentary. Prefer this over general Twitter search when you already have the tweet ID and specifically want quote tweet responses.

## Known failure modes

- Tweet ID not found or deleted — 404 error
- Tweet is from a private/protected account — access denied
- Invalid or malformed tweet ID — 400 bad request
- Rate limit exceeded — 429 error
- Insufficient payment or x402 payment failure — payment required
- No quote tweets exist for the given tweet — empty result set

## How this service works

Quote tweets

## Output

Returns a list of tweet objects that quote the specified tweet, including tweet text, author details, timestamps, and engagement metrics for each quoting tweet.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "cursor": {
       "description": "Pagination cursor",
       "type": "string"
      },
      "since": {
       "description": "Only include quotes after this Unix timestamp",
       "type": "integer",
       "minimum": -9007199254740991,
       "maximum": 9007199254740991
      },
      "until": {
       "description": "Only include quotes before this Unix timestamp",
       "type": "integer",
       "minimum": -9007199254740991,
       "maximum": 9007199254740991
      },
      "include_replies": {
       "default": true,
       "description": "Include replies in quote results",
       "type": "boolean"
      }
     }
    },
    "pathParams": {
     "type": "object"
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "array",
       "items": {
        "type": "object",
        "propertyNames": {
         "type": "string"
        },
        "additionalProperties": {}
       }
      },
      "meta": {
       "type": "object",
       "properties": {
        "result_count": {
         "type": "integer",
         "minimum": -9007199254740991,
         "maximum": 9007199254740991
        },
        "has_next_page": {
         "type": "boolean"
        },
        "next_cursor": {
         "type": "string"
        }
       },
       "required": [
        "result_count"
       ]
      },
      "summary": {
       "type": "object",
       "propertyNames": {
        "type": "string"
       },
       "additionalProperties": {}
      }
     },
     "required": [
      "data",
      "meta"
     ]
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glim-sh-twitter-quote-tweets-72f3dc57/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from glim.sh](https://www.zero.xyz/host/glim.sh/llms.txt)
