# SociaVault Twitter Search

> SociaVault Twitter Search is a paid API for AI agents from social.gedx402.com, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-16).

Search Twitter/X posts and content via the SociaVault proxy, returning matched tweet data for a given query with cursor-based pagination.

## Facts

- Endpoint: GET https://social.gedx402.com/v1/sociavault/twitter/search
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sociavault-twitter-search-7a94db06
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pdLIOwHLFIG0B8omqP5R8

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 sociavault-twitter-search-7a94db06
```

Example prompt: Search Twitter for recent tweets about 'AI agents' using SociaVault — give me the top results and include a cursor so I can get the next page if needed.

## When to prefer this

Use this endpoint when you need to search Twitter/X for posts matching a keyword or phrase and want a paid-per-call, no-subscription access model via x402 micropayment. Prefer over direct Twitter API when avoiding OAuth credential management or when integrating micropayment-based access into an agent workflow.

## Known failure modes

- Empty or missing query returns no results or error
- Invalid type parameter may produce unexpected results
- Expired or invalid x402 payment token results in 402 Payment Required
- Rate limiting or upstream Twitter API unavailability may cause failures
- Cursor value from a different query may produce invalid pagination results

## How this service works

SociaVault API proxy — twitter-search. Query/body matches https://docs.sociavault.com/api-reference/openapi.json. GET/POST per route; x402 per call. $0.014 USDC per request.

## Output

Returns a JSON object with a data field containing matching tweet results from Twitter search, a success boolean, and provider attribution ('sociavault'). Supports cursor-based pagination for iterating through result sets.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "type": {
   "type": "string"
  },
  "query": {
   "type": "string"
  },
  "cursor": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "success": true,
  "provider": "sociavault"
 }
}
```

## More

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