# Social Scanner API – Twitter Search

> Social Scanner API – Twitter Search is a paid API for AI agents from socialsigcan.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Searches Twitter for crypto-related content and returns engagement-scored results

## Facts

- Endpoint: GET https://socialsigcan.vercel.app/social/twitter/search
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/social-scanner-api-twitter-search-726376c9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BWJuUP5dq2qqjmnHv8dL2

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 social-scanner-api-twitter-search-726376c9
```

Example prompt: Search Twitter for the top 20 tweets mentioning 'Solana' and give me their engagement scores so I can see what the crypto community is saying about it right now.

## When to prefer this

Choose this endpoint when you need to search Twitter specifically for crypto-related topics with engagement scoring included in the response, and you are operating in a pay-per-call x402 micropayment context. Prefer this over general Twitter search wrappers when you want pre-built crypto social signal aggregation.

## Known failure modes

- Missing required 'q' parameter returns a validation error
- Invalid or empty query string may return zero results
- Rate limiting or upstream Twitter API issues may cause 402 payment errors or 5xx responses
- Malformed 'type' or non-numeric 'count' may cause 400 errors

## How this service works

Multi-platform social media scanner for crypto. Search Twitter, YouTube, and TikTok. Get engagement scores and aggregated results.

## Output

Returns a count of results and an array of tweet objects with engagement scores for the given query, filtered by optional type and limited to the requested count.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "q"
 ],
 "properties": {
  "q": {
   "type": "string"
  },
  "type": {
   "type": "string"
  },
  "count": {
   "type": "number"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "number"
  },
  "results": {
   "type": "array"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/social-scanner-api-twitter-search-726376c9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from socialsigcan.vercel.app](https://www.zero.xyz/host/socialsigcan.vercel.app/llms.txt)
