v1

latestOpenAPI 3.0.02026-07-1471718.0 KB
Threads by Unshape

Create post

Create a post from the request's body and publish it on Threads.

post/threads/create-post

Headers

X-Stripe-Emailstring required

The email you used to subscribe to Unshape

Request body

is_carousel_itemboolean

A boolean which tells if the current post will be a carousel or a simple post.

image_urlstring uri

If the media_type is IMAGE, then this is the URL to the image.

media_typestring required

The post's type. Must be either "TEXT", "IMAGE" or "VIDEO".

video_urlstring

If the media_type is VIDEO, then this is the URL to the video.

textstring required

The post's text content

tagstring

The hashtag you want to add to your post.

access_tokenstring

The access token you got when calling https://api.unshape.app/threads/token

Example request

{
  "media_type": "TEXT",
  "video_url": "#zapier #unshape #bluesky",
  "text": "My brand new Threads post",
  "tag": "unshape"
}

Response

Success - Post was successfully created in Threads

successboolean
statusnumber

Example response

{
  "success": true,
  "status": 200
}