# Interzoid Get X (Twitter) Last 3 Tweets

> Interzoid Get X (Twitter) Last 3 Tweets is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Retrieves the three most recent tweets (with dates) from a given X (Twitter) handle

## Facts

- Endpoint: GET https://api.interzoid.com/getxlast3
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-get-x-twitter-last-3-tweets-63655c9c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_szqDlXIx76ozaS9rZ9iDz

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 interzoid-get-x-twitter-last-3-tweets-63655c9c
```

Example prompt: What are the last 3 tweets from @Google on X? Pull the tweet text and dates for each one.

## When to prefer this

Use this endpoint when you need a quick, lightweight lookup of the most recent public tweets from a known X handle without setting up a full Twitter/X API integration. Ideal for social media monitoring, brand tracking, sentiment sampling, or enriching contact/company records with recent social activity. Best suited for single-handle spot checks rather than bulk historical analysis.

## Known failure modes

- Invalid or non-existent X handle returns an error code
- Handle with no tweets or private account may return empty results
- Rate limiting or API quota exhaustion returns credits=0 or error
- Malformed handle input (special characters) may cause lookup failure
- Network timeout if X data source is temporarily unavailable

## How this service works

Retrieve the three most recent posts (tweets) from a given X (Twitter) handle, including the full text content and date of each post.

## Output

Returns a JSON object containing the X handle, the text of the three most recent tweets (Tweet1, Tweet2, Tweet3), the date each was posted (Tweet1Date, Tweet2Date, Tweet3Date), a success/failure code, and remaining API credits.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "handle": "@NASA"
  }
 }
}
```

## 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": [
      "handle"
     ],
     "properties": {
      "handle": {
       "type": "string",
       "description": "X handle (with or without @ prefix)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "Handle": "Google",
  "Tweet1": "We're all falling for Punch ❤️",
  "Tweet2": "🍌🍌",
  "Tweet3": "Prompt: I want to wash my car. The car wash is 50 meters away. Should I walk or drive?",
  "Credits": "0",
  "Tweet1Date": "02/27/2026",
  "Tweet2Date": "02/26/2026",
  "Tweet3Date": "02/26/2026"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-get-x-twitter-last-3-tweets-63655c9c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
