# Twitter/X Tweet Search API

> Twitter/X Tweet Search API is a paid API for AI agents from api.monpham.work, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Searches Twitter/X for tweets matching a given query string and returns a list of results up to a specified limit.

## Facts

- Endpoint: GET https://api.monpham.work/v1/twitter/search
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twitter-x-tweet-search-api-ce3a42b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_djlQBXMT6G32Eqzh72PoO

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 twitter-x-tweet-search-api-ce3a42b3
```

Example prompt: Search Twitter for up to 20 tweets about 'AI regulation' and show me what people are saying.

## When to prefer this

Choose this endpoint when you need to search live Twitter/X content by keyword, hashtag, or phrase — especially useful for social listening, brand monitoring, news tracking, or sentiment research. Prefer this over general web search when the goal is specifically to surface public Twitter discourse.

## Known failure modes

- Invalid or empty query string returns an error
- Limit parameter out of range or missing may cause a 400 error
- Rate limiting or Twitter API restrictions may return partial results or 429 errors
- Private or deleted tweets will not appear in results
- Very recent tweets may not be indexed yet

## How this service works

Search X/Twitter tweets by query. POST body: {query, limit}.

## Output

Returns a list of tweets matching the search query, including tweet content, author handles, timestamps, and other available metadata, up to the specified limit.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twitter-x-tweet-search-api-ce3a42b3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.monpham.work](https://www.zero.xyz/host/api.monpham.work/llms.txt)
