# glim.sh Twitter Tweet Article Endpoint

> glim.sh Twitter Tweet Article Endpoint is a paid API for AI agents from glim.sh, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-08).

Fetches a structured article-style representation of a specific tweet by its ID, including title and metadata.

## Facts

- Endpoint: POST https://glim.sh/api/v1/twitter/tweets/%7Bid%7D/article
- Price: $0.005/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-article-endpoint-7232443e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6RJK7jwqa4xSYq1sdDSp8

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-article-endpoint-7232443e -d '<json body>'
```

Example prompt: Can you fetch the article version of the tweet with ID 1234567890 from glim.sh so I can see its title and structured content?

## When to prefer this

Use this endpoint when you need to retrieve a structured, article-style representation of a specific tweet by its ID without needing your own Twitter API keys or scraping infrastructure. Prefer this over building your own Twitter integration when you want pay-per-call simplicity with no setup.

## Known failure modes

- Invalid or non-existent tweet ID returns an error or empty data
- Rate limit or payment failure results in a 402 response requiring payment
- Network timeout if the upstream Twitter data source is slow
- Malformed tweet ID format causes a 400 bad request error
- Tweet may have been deleted or made private, resulting in no data returned

## 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 article representation of the specified tweet, including its ID and title (e.g. {data: {id: '1234567890', title: 'Example article'}}).

## 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",
   "title": "Example article"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glim-sh-twitter-tweet-article-endpoint-7232443e/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)
