# SocialFetch Threads Post Fetcher

> SocialFetch Threads Post Fetcher 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, last successful call 2026-08-04).

Fetches metadata and content for a single Threads post by its URL.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/threads/posts
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-08-04
- Success rate: 100% of calls made through Zero
- Rating: 4.3 / 5 from 1 review
- Activations on Zero: 16
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-threads-post-fetcher-e4a7bb02
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RJTHkUDNllFwXe4vFHcXZ

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-threads-post-fetcher-e4a7bb02
```

Example prompt: Can you pull the details of this Threads post for me — https://www.threads.net/@zuck/post/abc123 — I want to see the text, author, and engagement stats?

## When to prefer this

Use this endpoint when you need to retrieve the full content and metadata of a specific Threads post identified by its URL. Prefer this over Instagram or Bluesky post endpoints when working with Threads content specifically. Use the trim parameter when only core fields are needed to reduce response size.

## Known failure modes

- Invalid or non-Threads URL returns an error
- Post has been deleted or made private — returns not found
- Rate limit exceeded — HTTP 429
- Malformed URL parameter — validation error
- Post URL resolves to a profile page rather than a post

## How this service works

Get a single Threads post by URL.

## Output

Returns structured data about the specified Threads post including the post text, author information, timestamps, and engagement metrics (likes, replies, reposts). When trim=true, returns a condensed response with fewer 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": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "maxLength": 4096,
       "minLength": 1,
       "description": "Link to the Threads post."
      },
      "trim": {
       "anyOf": [
        {
         "type": "boolean"
        },
        {
         "enum": [
          "0",
          "1",
          "true",
          "false"
         ],
         "type": "string"
        }
       ],
       "description": "When true, returns a smaller response with fewer fields."
      }
     }
    }
   },
   "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-threads-post-fetcher-e4a7bb02/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)
