# glim.sh Twitter Tweet Replies Fetcher

> glim.sh Twitter Tweet Replies Fetcher is a paid API for AI agents from surf.cascade.fyi, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-08).

Fetches live replies to a specific Twitter/X tweet by its ID, with no API keys required, via pay-per-call.

## Facts

- Endpoint: POST https://surf.cascade.fyi/api/v1/twitter/tweets/%7Bid%7D/replies
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-08
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glim-sh-twitter-tweet-replies-fetcher-e8982445
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oy8cRDK5E1oe91swladZ5

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-tweet-replies-fetcher-e8982445 -d '<json body>'
```

Example prompt: Can you pull all the replies to tweet ID 1234567890 so I can see what people are saying in response to it?

## When to prefer this

Use this endpoint when you need live, real-time reply data for a specific tweet without setting up Twitter API credentials or a scraping infrastructure. Ideal for agents that need to analyze public discourse, sentiment, or responses to a specific tweet on demand, paying only per call.

## Known failure modes

- Invalid or non-existent tweet ID returns empty results or error
- Tweet may have replies disabled or be from a private account
- Payment failure via x402 protocol blocks the request
- Rate limiting or upstream Twitter API downtime may cause failures
- Malformed tweet ID format returns a 400-level error

## How this service works

One remote endpoint gives your agent live data from Twitter, Reddit, the open web, GitHub and more. No API keys, no scraping stack - just connect the URL and go.

## Output

Returns a JSON array of reply tweet objects, each containing a tweet ID and text, along with metadata including the total result count.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "sort": {
       "enum": [
        "Relevance",
        "Latest",
        "Likes"
       ],
       "type": "string",
       "default": "Relevance",
       "description": "Reply sort"
      },
      "since": {
       "type": "integer",
       "maximum": 9007199254740991,
       "minimum": -9007199254740991,
       "description": "Only include replies after this Unix timestamp"
      },
      "until": {
       "type": "integer",
       "maximum": 9007199254740991,
       "minimum": -9007199254740991,
       "description": "Only include replies before this Unix timestamp"
      },
      "cursor": {
       "type": "string",
       "description": "Pagination cursor"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "array",
       "items": {
        "type": "object",
        "propertyNames": {
         "type": "string"
        },
        "additionalProperties": {}
       }
      },
      "meta": {
       "type": "object",
       "required": [
        "result_count"
       ],
       "properties": {
        "next_cursor": {
         "type": "string"
        },
        "result_count": {
         "type": "integer",
         "maximum": 9007199254740991,
         "minimum": -9007199254740991
        },
        "has_next_page": {
         "type": "boolean"
        }
       }
      },
      "summary": {
       "type": "object",
       "propertyNames": {
        "type": "string"
       },
       "additionalProperties": {}
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "id": "1234567890",
    "text": "Example tweet"
   }
  ],
  "meta": {
   "result_count": 1
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glim-sh-twitter-tweet-replies-fetcher-e8982445/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from surf.cascade.fyi](https://www.zero.xyz/host/surf.cascade.fyi/llms.txt)
