# SocialFetch – List Tweets from X Profile

> SocialFetch – List Tweets from X Profile is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-15).

Fetches a paginated list of tweets from a specified X (Twitter) profile by its handle.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/twitter/profiles/:handle/tweets
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-list-tweets-from-x-profile-7630684a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NLBjSCJax-hGZm81nor82

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 socialfetch-list-tweets-from-x-profile-7630684a
```

Example prompt: Can you pull the last 50 tweets from the X profile @naval — skip replies but include any pinned tweets?

## When to prefer this

Choose this endpoint when you need to retrieve a chronological list of tweets from a known public X profile by handle, with control over pagination, reply inclusion, and pinned tweet inclusion. Prefer it over search-based endpoints when the target account is known and you want timeline-style data rather than keyword-matched results.

## Known failure modes

- Handle not found or account does not exist — likely a 404 or empty result
- Account is private or suspended — access denied or empty list
- Invalid or expired pagination cursor — may return an error or restart pagination
- Limit parameter out of range (below 1 or above 100) — validation error
- Rate limiting by the upstream X API — service may return a 429 or timeout

## How this service works

List tweets from an X profile by handle.

## Output

Returns a paginated list of tweet objects from the specified X profile, each containing tweet content and metadata. A cursor is included in the response to fetch the next page. The first page can optionally include pinned tweets, and replies can be toggled on or off.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "handle"
     ],
     "properties": {
      "handle": {
       "type": "string",
       "description": "X (Twitter) profile handle without the leading @, or a numeric user id."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "by": {
       "enum": [
        "id",
        "handle"
       ],
       "type": "string",
       "description": "Treat the path value as a handle or a numeric user id. Defaults to id when the value is all digits."
      },
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1,
       "description": "Requested page size (1–100). Best-effort; the actual page size may differ."
      },
      "cursor": {
       "type": "string",
       "minLength": 1,
       "description": "Opaque pagination cursor returned by a previous response."
      },
      "includePinned": {
       "anyOf": [
        {
         "type": "boolean"
        },
        {
         "enum": [
          "0",
          "1",
          "true",
          "false"
         ],
         "type": "string"
        }
       ],
       "description": "When true, includes the pinned tweet when available."
      },
      "includeReplies": {
       "anyOf": [
        {
         "type": "boolean"
        },
        {
         "enum": [
          "0",
          "1",
          "true",
          "false"
         ],
         "type": "string"
        }
       ],
       "description": "When true, includes reply tweets. Defaults to false."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-list-tweets-from-x-profile-7630684a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
