# Twitter/X Post Details Lookup

> Twitter/X Post Details Lookup is a paid API for AI agents from twitter.use.x402atlas.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Fetches complete public data for a single X (Twitter) post by its numeric tweet ID.

## Facts

- Endpoint: GET https://twitter.use.x402atlas.com/tweet-details
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twitter-x-post-details-lookup-9a901655
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xS3L2Byv1w8NC1PzkkzEr

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 twitter-x-post-details-lookup-9a901655
```

Example prompt: Can you pull up the full details for the X post with ID 1812345678901234567 — I need the text, author, and engagement numbers?

## When to prefer this

Use this endpoint when you have a specific tweet ID and need the full public data for that single post. It is ideal for fact-checking, content archiving, social media monitoring, or enriching datasets with tweet details. Prefer this over search endpoints when you already know the exact post ID and need structured, complete metadata rather than query-based results.

## Known failure modes

- Invalid tweet_id format (non-numeric or too long) returns a validation error
- Tweet not found or deleted returns an empty or error response
- Private/protected account posts are inaccessible and return no data
- Rate limiting from the underlying X API may cause temporary failures
- Network or upstream X API outages result in service errors

## How this service works

Get the complete public data for one X post.

## Output

Returns a JSON object containing the full public data for the requested X post, including post text, author information, engagement metrics (likes, retweets, replies), media attachments, timestamps, and any other publicly available metadata, along with a queried_at datetime and an optional pagination cursor.

## 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": [
      "tweet_id"
     ],
     "properties": {
      "tweet_id": {
       "type": "string",
       "pattern": "^[0-9]{1,25}$",
       "maxLength": 25,
       "description": "Decimal X post identifier"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "queried_at",
      "data"
     ],
     "properties": {
      "data": {
       "type": "object",
       "additionalProperties": true
      },
      "cursor": {
       "type": "string",
       "description": "Opaque cursor for the next page, when supplied by X"
      },
      "queried_at": {
       "type": "string",
       "format": "date-time"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "user": {
    "name": "Bill Gates",
    "id_str": "50393960",
    "screen_name": "BillGates"
   },
   "id_str": "1903602810652082591",
   "full_text": "Example X post",
   "created_at": "Sun Mar 23 12:00:00 +0000 2025",
   "reply_count": 8,
   "retweet_count": 15,
   "favorite_count": 120
  },
  "queried_at": "2026-07-26T12:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twitter-x-post-details-lookup-9a901655/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from twitter.use.x402atlas.com](https://www.zero.xyz/host/twitter.use.x402atlas.com/llms.txt)
