Threads

Publish text, images, and videos to Meta's Threads via the PostPeer API.

Overview

Publish text, images, and videos to Meta's Threads platform. Unlike Instagram, Threads supports text-only posts.

Status: Coming soon. Threads integration is currently in development.

Quick Start

1. Connect a Threads Account

curl https://api.postpeer.dev/v1/connect/threads \
  -H "x-access-key: YOUR_API_KEY"

Returns a Meta OAuth URL. Threads uses Instagram/Meta authentication.

2. Publish a Post

curl -X POST "https://api.postpeer.dev/v1/posts" \
  -H "x-access-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "content": "Shipping something new today. Stay tuned.",
    "platforms": [
      { "platform": "threads", "accountId": "th_654" }
    ],
    "publishNow": true
  }'

Response:

{
  "success": true,
  "status": "published",
  "postId": "post_stu901",
  "platforms": [
    {
      "platform": "threads",
      "success": true,
      "platformPostUrl": "https://www.threads.net/@user/post/ABC123"
    }
  ]
}

Features

Text Posts

Threads supports text-only posts up to 500 characters.

Image & Video Posts

Attach media for richer content:

{
  "mediaItems": [
    { "type": "image", "url": "https://cdn.example.com/photo.jpg" }
  ]
}

Cross-Post with Twitter

Publish the same text content to Threads and Twitter simultaneously:

{
  "content": "Big announcement coming tomorrow!",
  "platforms": [
    { "platform": "threads", "accountId": "th_654" },
    { "platform": "twitter", "accountId": "tw_123" }
  ],
  "publishNow": true
}

Limits

LimitValue
Character limit500
ImagesJPG, PNG
VideosMP4

On this page