# Orthogonal Twitter Search

> Orthogonal Twitter Search is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Search tweets by query string using Twitter search operators, with pagination support and x402 micropayment billing

## Facts

- Endpoint: POST https://x402.orthogonal.com/fiber/v1/twitter/search
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-twitter-search-e7d8d9ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nGReeEhMaXVJ7HUQHoMHB

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 orthogonal-twitter-search-e7d8d9ae -d '<json body>'
```

Example prompt: Search Twitter for recent tweets about 'OpenAI GPT-5' and show me what people are saying — use standard Twitter search operators if needed to filter to the most relevant results.

## When to prefer this

Choose this endpoint when you need to search Twitter/X for tweets matching specific keywords, hashtags, or Twitter search operators, especially within an x402 micropayment-enabled agent workflow. The built-in pagination billing model (free continuation pages using parentRequestId) makes it cost-efficient for deep multi-page searches. Prefer this over general web-scraping alternatives when you specifically need structured tweet data with Twitter's native search capabilities.

## Known failure modes

- Invalid or malformed search query returns an error
- Expired or invalid pagination cursor causes a failed continuation
- Changing filter parameters mid-pagination starts a new billable request
- Rate limits on underlying Twitter API may result in empty or truncated results
- Network or payment authorization failure returns a 402 or 5xx error
- No tweets found for niche or very specific query returns empty result set

## How this service works

Search tweets by query string. Supports Twitter search operators. Pagination billing: call the first page normally and save billing.requestId from the Orthogonal /v1/run response. For later page, offset, or cursor calls on the same logical search, pass parentRequestId with unchanged non-pagination parameters. Valid continuation calls still get their own request IDs and quoted price, but are charged 0. Changing filters starts a new billable request.

## Output

Returns a list of tweets matching the search query, including tweet text, author metadata, timestamps, engagement metrics, and a pagination cursor for fetching subsequent pages. The Orthogonal billing response also includes a requestId to use as parentRequestId for free pagination continuation calls.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "description": "Tweet search query."
  },
  "cursor": {
   "type": "string",
   "description": "Pagination cursor. For later cursor pages of the same logical search, keep non-pagination parameters unchanged and pass top-level parentRequestId from the first Orthogonal /v1/run response."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-twitter-search-e7d8d9ae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
