# Surplus Intelligence Twitter V2 Single Tweet Lookup

> Surplus Intelligence Twitter V2 Single Tweet Lookup is a paid API for AI agents from www.surplusintelligence.ai, paid per call via x402, $0.007900/call, status unknown (last checked 2026-09-15).

Fetches a single tweet's data from the X/Twitter API v2 by tweet ID, billed at 1 unit per call via x402 micropayment

## Facts

- Endpoint: GET https://www.surplusintelligence.ai/x402/api/twitter/v2/tweets/:tweetId
- Price: $0.007900/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/www-surplusintelligence-ai-38fc16be
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MsPdYgtWkvjEK4PqNhIb5

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 www-surplusintelligence-ai-38fc16be
```

Example prompt: Can you look up the tweet with ID 1234567890123456789 and tell me what it says?

## When to prefer this

Use this endpoint when you need to retrieve the full details of a single, known tweet by its numeric ID and want to pay per-call via x402 USDC micropayments without managing Twitter API credentials directly. Prefer this over search endpoints when you already have the exact tweet ID.

## Known failure modes

- Invalid or non-numeric tweetId returns an error from the Twitter API
- Tweet has been deleted or made private — returns a not-found or authorization error
- Tweet ID does not exist — returns a 404-style error from Twitter
- Payment failure via x402 — call not executed if USDC funds are insufficient
- Rate limiting at the underlying Twitter API level may cause transient failures

## How this service works

X/Twitter API v2 via Surplus Intelligence: Single tweet lookup (1 unit)

## Output

Returns a JSON object with a `data` field containing the tweet's content and metadata, a `meta` object, and an `errors` array if applicable — matching the X/Twitter API v2 single tweet response format.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "tweetId"
     ],
     "properties": {
      "tweetId": {
       "type": "string",
       "description": "Numeric X/Twitter tweet ID."
      }
     },
     "additionalProperties": false
    },
    "queryParams": {
     "type": "object",
     "properties": {},
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {},
      "meta": {
       "type": "object"
      },
      "errors": {
       "type": "array"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/www-surplusintelligence-ai-38fc16be/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.surplusintelligence.ai](https://www.zero.xyz/host/www.surplusintelligence.ai/llms.txt)
