# glim.sh Twitter List Tweets Fetcher

> glim.sh Twitter List Tweets 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-15).

Fetches live tweets from a specified Twitter/X list by list ID, returning recent tweet data without requiring API keys

## Facts

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

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-list-tweets-fetcher-281cac34 -d '<json body>'
```

Example prompt: Pull the latest tweets from Twitter list ID 1234567890 — I want to see what's being posted there right now.

## When to prefer this

Choose this endpoint when you need live, real-time tweet data from a specific Twitter list without managing Twitter API credentials or a scraping stack. It is ideal for agents that need to monitor curated Twitter lists, aggregate content from a set of accounts, or ingest social signals at low per-call cost ($0.004 USDC). Prefer this over self-managed Twitter API integrations when speed of setup and pay-per-use economics matter.

## Known failure modes

- Invalid or non-existent list ID returns empty data or 404-equivalent error
- Private or restricted Twitter lists may return no results or an access error
- Payment failure via x402 protocol results in 402 response and no data returned
- Rate limiting or upstream Twitter API issues may cause delayed or partial responses
- Malformed list ID format may cause request to fail with a validation 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 object with a 'data' array of tweets (each containing tweet ID and text) and a 'meta' object with result_count, reflecting the most recent tweets posted to the specified Twitter list.

## 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": {
      "since": {
       "type": "integer",
       "maximum": 9007199254740991,
       "minimum": -9007199254740991,
       "description": "Only include tweets after this Unix timestamp"
      },
      "until": {
       "type": "integer",
       "maximum": 9007199254740991,
       "minimum": -9007199254740991,
       "description": "Only include tweets before this Unix timestamp"
      },
      "cursor": {
       "type": "string",
       "description": "Pagination cursor"
      },
      "include_replies": {
       "type": "boolean",
       "default": true,
       "description": "Include replies in list tweets"
      }
     }
    },
    "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-list-tweets-fetcher-281cac34/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)
