# Clink Lithium Vault – X/Twitter Trend Digest

> Clink Lithium Vault – X/Twitter Trend Digest is a paid API for AI agents from clink-lithium-vault.fly.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Searches live tweets via advanced X/Twitter query syntax and returns an AI-written trend summary with sentiment, key themes, driving accounts, and notable post URLs alongside raw tweet results.

## Facts

- Endpoint: GET https://clink-lithium-vault.fly.dev/x/digest
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clink-lithium-vault-x-twitter-trend-digest-3e18bc91
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WJSuFQsDIjZa44EBVoc3Z

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 clink-lithium-vault-x-twitter-trend-digest-3e18bc91
```

Example prompt: Search X/Twitter for 'bitcoin lang:en min_faves:100' and give me an AI-written trend digest — I want the 3-5 sentence summary, the overall sentiment with the reason behind it, the key themes people are discussing, and which accounts are driving the conversation.

## When to prefer this

Choose this endpoint over the raw /x/search sibling when you need an immediately usable AI-written narrative — not just raw tweets. It's best when an agent needs to report social sentiment, surface key themes, or identify influential accounts without post-processing the raw data itself. Prefer the $0.006 /x/search endpoint when you only need raw tweets and will do your own analysis.

## Known failure modes

- Missing or empty 'query' parameter returns an error — query is required
- Overly narrow or misspelled search operators may return zero tweets and an empty digest
- X/Twitter API rate limits or downtime may cause request failures
- Advanced syntax errors (e.g. malformed 'since' dates) may cause unexpected empty results
- No results for highly obscure or low-volume queries leading to a sparse summary

## How this service works

X/Twitter trend digest - live tweet search PLUS an AI-written summary an agent can use directly: 3-5 sentence trend summary, sentiment (positive/negative/mixed/neutral) with reason, key themes, driving accounts, notable post URLs. Raw tweets included. Advanced search syntax: from:user, #hashtags, min_faves, since dates, lang. Social media monitoring, crypto, stocks, news sentiment, brand tracking, market signals. ?query=<advanced search>. Raw-only tier: /x/search $0.02.

## Output

Returns a structured JSON response containing: an AI-written 3-5 sentence trend summary, a sentiment classification (positive/negative/mixed/neutral) with a stated reason, a list of key themes, a list of driving/influential accounts, notable post URLs, and the underlying raw tweets that informed the summary.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "query"
     ],
     "properties": {
      "query": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "digest": {
   "summary": "...",
   "sentiment": "mixed",
   "key_themes": [
    "..."
   ],
   "driving_accounts": [
    "..."
   ]
  },
  "result_count": 20
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clink-lithium-vault-x-twitter-trend-digest-3e18bc91/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from clink-lithium-vault.fly.dev](https://www.zero.xyz/host/clink-lithium-vault.fly.dev/llms.txt)
