Create Threads Post
curl --request POST \
--url https://api.stover.app/v1/posts/threads \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"content": "<string>",
"media_urls": [
"<string>"
],
"reply_control": "everyone",
"status": "draft",
"scheduled_date": "2023-11-07T05:31:56Z"
}
'import requests
url = "https://api.stover.app/v1/posts/threads"
payload = {
"content": "<string>",
"media_urls": ["<string>"],
"reply_control": "everyone",
"status": "draft",
"scheduled_date": "2023-11-07T05:31:56Z"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
content: '<string>',
media_urls: ['<string>'],
reply_control: 'everyone',
status: 'draft',
scheduled_date: '2023-11-07T05:31:56Z'
})
};
fetch('https://api.stover.app/v1/posts/threads', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.stover.app/v1/posts/threads",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'content' => '<string>',
'media_urls' => [
'<string>'
],
'reply_control' => 'everyone',
'status' => 'draft',
'scheduled_date' => '2023-11-07T05:31:56Z'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.stover.app/v1/posts/threads"
payload := strings.NewReader("{\n \"content\": \"<string>\",\n \"media_urls\": [\n \"<string>\"\n ],\n \"reply_control\": \"everyone\",\n \"status\": \"draft\",\n \"scheduled_date\": \"2023-11-07T05:31:56Z\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.stover.app/v1/posts/threads")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"content\": \"<string>\",\n \"media_urls\": [\n \"<string>\"\n ],\n \"reply_control\": \"everyone\",\n \"status\": \"draft\",\n \"scheduled_date\": \"2023-11-07T05:31:56Z\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.stover.app/v1/posts/threads")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"content\": \"<string>\",\n \"media_urls\": [\n \"<string>\"\n ],\n \"reply_control\": \"everyone\",\n \"status\": \"draft\",\n \"scheduled_date\": \"2023-11-07T05:31:56Z\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {}
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}Posts
Threads
Create a post for Threads.
POST
/
v1
/
posts
/
threads
Create Threads Post
curl --request POST \
--url https://api.stover.app/v1/posts/threads \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"content": "<string>",
"media_urls": [
"<string>"
],
"reply_control": "everyone",
"status": "draft",
"scheduled_date": "2023-11-07T05:31:56Z"
}
'import requests
url = "https://api.stover.app/v1/posts/threads"
payload = {
"content": "<string>",
"media_urls": ["<string>"],
"reply_control": "everyone",
"status": "draft",
"scheduled_date": "2023-11-07T05:31:56Z"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
content: '<string>',
media_urls: ['<string>'],
reply_control: 'everyone',
status: 'draft',
scheduled_date: '2023-11-07T05:31:56Z'
})
};
fetch('https://api.stover.app/v1/posts/threads', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.stover.app/v1/posts/threads",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'content' => '<string>',
'media_urls' => [
'<string>'
],
'reply_control' => 'everyone',
'status' => 'draft',
'scheduled_date' => '2023-11-07T05:31:56Z'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.stover.app/v1/posts/threads"
payload := strings.NewReader("{\n \"content\": \"<string>\",\n \"media_urls\": [\n \"<string>\"\n ],\n \"reply_control\": \"everyone\",\n \"status\": \"draft\",\n \"scheduled_date\": \"2023-11-07T05:31:56Z\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.stover.app/v1/posts/threads")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"content\": \"<string>\",\n \"media_urls\": [\n \"<string>\"\n ],\n \"reply_control\": \"everyone\",\n \"status\": \"draft\",\n \"scheduled_date\": \"2023-11-07T05:31:56Z\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.stover.app/v1/posts/threads")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"content\": \"<string>\",\n \"media_urls\": [\n \"<string>\"\n ],\n \"reply_control\": \"everyone\",\n \"status\": \"draft\",\n \"scheduled_date\": \"2023-11-07T05:31:56Z\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {}
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}Request Fields
| Field | Required | Description |
|---|---|---|
media_type | Yes | text, image, video, or carousel |
content | * | Post text (max 500 chars) |
media_urls | * | URLs of media (max 10) |
reply_control | No | everyone, accounts_you_follow, or mentioned_only |
status | No | draft or scheduled |
scheduled_date | No | ISO 8601 date |
*
content required for text type. media_urls required for image, video, carousel types.Example
curl -X POST https://api.stover.app/v1/posts/threads \
-H "Authorization: Bearer stover_pk_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"media_type": "text",
"content": "What is everyone working on today?",
"reply_control": "everyone",
"status": "draft"
}'
const response = await fetch('https://api.stover.app/v1/posts/threads', {
method: 'POST',
headers: {
'Authorization': 'Bearer stover_pk_your_api_key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
media_type: 'text',
content: 'What is everyone working on today?',
reply_control: 'everyone',
status: 'draft'
})
});
import requests
response = requests.post(
'https://api.stover.app/v1/posts/threads',
headers={
'Authorization': 'Bearer stover_pk_your_api_key',
'Content-Type': 'application/json'
},
json={
'media_type': 'text',
'content': 'What is everyone working on today?',
'reply_control': 'everyone',
'status': 'draft'
}
)
Media Types
| Type | Content | Media |
|---|---|---|
text | Required | Not allowed |
image | Optional | Required (1) |
video | Optional | Required (1) |
carousel | Optional | Required (2-10) |
Authorizations
API key: Bearer stover_pk_...
Body
application/json
Available options:
text, image, video, carousel Post text (max 500 chars)
Available options:
everyone, accounts_you_follow, mentioned_only Available options:
draft, scheduled ⌘I