Create Instagram Post
curl --request POST \
--url https://api.stover.app/v1/posts/instagram \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"caption": "<string>",
"media_urls": [
"<string>"
],
"hashtags": [
"<string>"
],
"status": "draft",
"scheduled_date": "2023-11-07T05:31:56Z"
}
'import requests
url = "https://api.stover.app/v1/posts/instagram"
payload = {
"caption": "<string>",
"media_urls": ["<string>"],
"hashtags": ["<string>"],
"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({
caption: '<string>',
media_urls: ['<string>'],
hashtags: ['<string>'],
status: 'draft',
scheduled_date: '2023-11-07T05:31:56Z'
})
};
fetch('https://api.stover.app/v1/posts/instagram', 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/instagram",
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([
'caption' => '<string>',
'media_urls' => [
'<string>'
],
'hashtags' => [
'<string>'
],
'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/instagram"
payload := strings.NewReader("{\n \"caption\": \"<string>\",\n \"media_urls\": [\n \"<string>\"\n ],\n \"hashtags\": [\n \"<string>\"\n ],\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/instagram")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"caption\": \"<string>\",\n \"media_urls\": [\n \"<string>\"\n ],\n \"hashtags\": [\n \"<string>\"\n ],\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/instagram")
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 \"caption\": \"<string>\",\n \"media_urls\": [\n \"<string>\"\n ],\n \"hashtags\": [\n \"<string>\"\n ],\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
Create a feed post, reel, or carousel for Instagram.
POST
/
v1
/
posts
/
instagram
Create Instagram Post
curl --request POST \
--url https://api.stover.app/v1/posts/instagram \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"caption": "<string>",
"media_urls": [
"<string>"
],
"hashtags": [
"<string>"
],
"status": "draft",
"scheduled_date": "2023-11-07T05:31:56Z"
}
'import requests
url = "https://api.stover.app/v1/posts/instagram"
payload = {
"caption": "<string>",
"media_urls": ["<string>"],
"hashtags": ["<string>"],
"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({
caption: '<string>',
media_urls: ['<string>'],
hashtags: ['<string>'],
status: 'draft',
scheduled_date: '2023-11-07T05:31:56Z'
})
};
fetch('https://api.stover.app/v1/posts/instagram', 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/instagram",
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([
'caption' => '<string>',
'media_urls' => [
'<string>'
],
'hashtags' => [
'<string>'
],
'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/instagram"
payload := strings.NewReader("{\n \"caption\": \"<string>\",\n \"media_urls\": [\n \"<string>\"\n ],\n \"hashtags\": [\n \"<string>\"\n ],\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/instagram")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"caption\": \"<string>\",\n \"media_urls\": [\n \"<string>\"\n ],\n \"hashtags\": [\n \"<string>\"\n ],\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/instagram")
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 \"caption\": \"<string>\",\n \"media_urls\": [\n \"<string>\"\n ],\n \"hashtags\": [\n \"<string>\"\n ],\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 | feed_post, reel, or carousel |
caption | No | Post caption (max 2,200 chars) |
media_urls | Yes | URLs of images/videos |
hashtags | No | Hashtags without # prefix |
status | No | draft or scheduled |
scheduled_date | No | ISO 8601 date |
Example
curl -X POST https://api.stover.app/v1/posts/instagram \
-H "Authorization: Bearer stover_pk_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"media_type": "feed_post",
"caption": "Excited to share our latest update!",
"media_urls": ["https://example.com/image.jpg"],
"hashtags": ["product", "launch"],
"status": "draft"
}'
const response = await fetch('https://api.stover.app/v1/posts/instagram', {
method: 'POST',
headers: {
'Authorization': 'Bearer stover_pk_your_api_key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
media_type: 'feed_post',
caption: 'Excited to share our latest update!',
media_urls: ['https://example.com/image.jpg'],
hashtags: ['product', 'launch'],
status: 'draft'
})
});
import requests
response = requests.post(
'https://api.stover.app/v1/posts/instagram',
headers={
'Authorization': 'Bearer stover_pk_your_api_key',
'Content-Type': 'application/json'
},
json={
'media_type': 'feed_post',
'caption': 'Excited to share our latest update!',
'media_urls': ['https://example.com/image.jpg'],
'hashtags': ['product', 'launch'],
'status': 'draft'
}
)
Media Types
| Type | Description |
|---|---|
feed_post | Standard image post |
reel | Video (up to 90 seconds) |
carousel | Multiple media (up to 10) |
Authorizations
API key: Bearer stover_pk_...
Body
application/json
⌘I