# glim.sh Twitter Tweet Lookup by ID

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

Fetches a single Twitter/X tweet by its ID, returning the tweet's text and metadata in real time.

## Facts

- Endpoint: POST https://surf.cascade.fyi/api/v1/twitter/tweets/%7Bid%7D
- Price: $0.001/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-lookup-by-id-c4b79fa0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9FdWYZB2gJ0ZKEzimpIum

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-lookup-by-id-c4b79fa0 -d '<json body>'
```

Example prompt: Can you fetch the tweet with ID 1893456789012345678 and tell me what it says?

## When to prefer this

Use this endpoint when you need the live text and metadata of a specific tweet by its ID and do not have Twitter API credentials. It costs $0.001 USDC per call with no setup required, making it ideal for lightweight, on-demand tweet lookups inside agent workflows.

## Known failure modes

- Tweet ID not found or deleted — likely returns 404 or empty data
- Invalid tweet ID format — may return validation error
- Rate limiting or upstream Twitter API issues — may return 429 or 503
- Payment failure via x402 — request not processed if USDC payment rejected

## 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 object with the tweet's ID and full text (e.g. {"data":{"id":"...","text":"..."}}), sourced live from Twitter/X.

## 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": {},
     "description": "No body parameters - the tweet id is taken from the URL path"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object",
       "propertyNames": {
        "type": "string"
       },
       "additionalProperties": {}
      }
     },
     "required": [
      "data"
     ]
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "id": "1234567890",
   "text": "Example tweet"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glim-sh-twitter-tweet-lookup-by-id-c4b79fa0/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)
