# glim.sh Tweet Replies

> glim.sh Tweet Replies 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 replies to a specific tweet by its ID from Twitter/X

## Facts

- Endpoint: POST https://glim.sh/api/v1/twitter/tweets/:id/replies
- 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-tweet-replies-8683e3fe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SEHXoJgMoStkeIRSEdhCq

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-tweet-replies-8683e3fe -d '<json body>'
```

Example prompt: Can you pull all the replies to tweet ID 1234567890123456789 so I can see how people are responding to it?

## When to prefer this

Use this endpoint when you need to retrieve the replies to a specific known tweet and have its ID. Prefer this over general tweet search when you already know the tweet and want to analyze the conversation beneath it, gather sentiment from replies, or monitor engagement on a specific post.

## Known failure modes

- Invalid or non-existent tweet ID returns an error or empty result
- Tweet is from a private/protected account and replies are not accessible
- Rate limits or quota exhaustion from the underlying Twitter API
- Payment failure via x402 protocol prevents the request from completing
- Tweet has no replies, returning an empty list

## How this service works

Tweet replies

## Output

A list of reply tweets for the specified tweet ID, likely including reply text, author handles, timestamps, and reply metadata such as like counts or reply IDs.

## 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": {
      "sort": {
       "default": "Relevance",
       "description": "Reply sort",
       "type": "string",
       "enum": [
        "Relevance",
        "Latest",
        "Likes"
       ]
      },
      "cursor": {
       "description": "Pagination cursor",
       "type": "string"
      },
      "since": {
       "description": "Only include replies after this Unix timestamp",
       "type": "integer",
       "minimum": -9007199254740991,
       "maximum": 9007199254740991
      },
      "until": {
       "description": "Only include replies before this Unix timestamp",
       "type": "integer",
       "minimum": -9007199254740991,
       "maximum": 9007199254740991
      }
     }
    },
    "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-tweet-replies-8683e3fe/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)
