Skip to main content
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 '
{
  "media_type": "feed_post",
  "caption": "<string>",
  "media_urls": [
    "<string>"
  ],
  "hashtags": [
    "<string>"
  ],
  "status": "draft",
  "scheduled_date": "2023-11-07T05:31:56Z"
}
'
{
  "success": true,
  "data": {}
}

Request Fields

FieldRequiredDescription
media_typeYesfeed_post, reel, or carousel
captionNoPost caption (max 2,200 chars)
media_urlsYesURLs of images/videos
hashtagsNoHashtags without # prefix
statusNodraft or scheduled
scheduled_dateNoISO 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"
  }'

Media Types

TypeDescription
feed_postStandard image post
reelVideo (up to 90 seconds)
carouselMultiple media (up to 10)

Authorizations

Authorization
string
header
required

API key: Bearer stover_pk_...

Body

application/json
media_type
enum<string>
required

Type of post

Available options:
feed_post,
reel,
carousel
caption
string

Post caption (max 2,200 chars)

media_urls
string[]

Media URLs

hashtags
string[]
status
enum<string>
default:draft
Available options:
draft,
scheduled
scheduled_date
string<date-time>

Response

Post created

success
boolean
data
object