# SocialFetch - List Threads Profile Posts

> SocialFetch - List Threads Profile Posts 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-14).

Retrieves a list of posts from a Threads user profile by their handle.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/threads/profiles/:handle/posts
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-list-threads-profile-posts-f075a65a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KUq_cHMub-Ifoyh_Sk2lp

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-threads-profile-posts-f075a65a
```

Example prompt: Can you pull the latest posts from the Threads account @zuck and give me a summary of what they've been posting about?

## When to prefer this

Use this endpoint when you need to enumerate multiple posts from a specific Threads user's profile feed by their handle. Prefer this over single-post endpoints when you need breadth (multiple posts) rather than depth (one specific post by URL). Choose the trim option when you need a lightweight response for high-volume processing.

## Known failure modes

- Handle not found or does not exist on Threads — empty result or 404-equivalent
- Private or restricted Threads profile — access denied or empty list
- Invalid or malformed handle (length out of bounds) — schema validation error
- Rate limiting or payment failure — 402 or 429 response
- Threads platform temporarily unavailable — upstream timeout or error

## How this service works

List posts from a Threads profile by handle.

## Output

A list of posts from the specified Threads profile, each containing post content and associated metadata. If the trim flag is enabled, a reduced set of fields is returned per post.

## 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",
       "maxLength": 64,
       "minLength": 1,
       "description": "Threads handle whose posts should be listed."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "trim": {
       "type": "boolean",
       "description": "When true, returns a smaller response with fewer post fields when available."
      }
     }
    }
   },
   "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-threads-profile-posts-f075a65a/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)
