# Twitter/X User Highlighted Posts

> Twitter/X User Highlighted Posts 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-16).

Fetches the pinned/highlighted posts that a specific X (Twitter) user has selected to showcase on their profile.

## Facts

- Endpoint: GET https://twitter.use.x402atlas.com/user-highlights
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twitter-x-user-highlighted-posts-a5ce7d20
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9o486EG1mhlFeCqy_uAje

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-user-highlighted-posts-a5ce7d20
```

Example prompt: Can you pull up the highlighted posts that @naval has pinned and featured on his X profile?

## When to prefer this

Use this endpoint when you specifically need the posts a user has curated and highlighted on their X profile — distinct from their general timeline, media posts, or replies. Ideal for understanding what a user considers their most important or representative content, for profiling influencers or brands, or for monitoring what an account is currently featuring publicly.

## Known failure modes

- Invalid or non-existent username returns empty data array or 404-equivalent error
- Username with no highlights returns result_count of 0 and empty data array
- Rate limiting from upstream X API causes request failure
- Private or suspended accounts may return no data or an access error
- Malformed username (exceeds 15 chars or invalid characters) rejected by schema validation

## How this service works

Get the highlighted posts selected on an X user profile.

## Output

Returns an array of post objects that the user has selected as highlights on their X profile, along with a result_count integer, a queried_at ISO timestamp, and optionally an opaque cursor string for pagination. Each post item contains extended tweet-level data fields.

## 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": [
      "username"
     ],
     "properties": {
      "username": {
       "type": "string",
       "pattern": "^@?[A-Za-z0-9_]{1,15}$",
       "maxLength": 16,
       "description": "X username, with or without a leading @"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "queried_at",
      "data",
      "result_count"
     ],
     "properties": {
      "data": {
       "type": "array",
       "items": {
        "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"
      },
      "result_count": {
       "type": "integer",
       "minimum": 0
      }
     }
    }
   }
  }
 }
}
```

## 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
   }
  ],
  "cursor": "NEXT_PAGE_CURSOR",
  "queried_at": "2026-07-26T12:00:00Z",
  "result_count": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twitter-x-user-highlighted-posts-a5ce7d20/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)
