Options for posting via the API to Instagram
Instagram API Endpoints
If you have issues connecting Instagram, please see the troubleshooting guide.
Overview
Post images or videos directly to Instagram.
Instagram has the following requirements and restrictions:
Business or Creator Instagram Account connected with a Facebook Page - see here.
Only 50 Instagram posts are allowed over a 24 hour period. See below for
usedQuota
The
post
text may contain up to 30 hashtags (e.g. #wildtimes) and 3 username mentions (e.g. @natgeo).@mention Instagram users will receive a notification.
Maximum 2,200 post characters.
Multi-image/videos posts are supported and sent as a carousel. You may send up to 10 videos and images.
Instagram does not support deletes via an API. Deletes must occur manually using the Instagram app.
If your video doesn't end in a known video extension such as mp4, please use the
isVideo
parameter. See the /post endpoint for details.Instagram also supports sending media without post text. If you do not want post text included send an empty String
post: ""
Note: The aspect ratio of images & videos and the duration of video are very important to successfully post to Instagram. If they do not meet the requirements, the post will be rejected.
Please see the Instagram section of Image and Video Guidelines:
Image and Video GuidelinesJSON for a basic post with an image and hashtags to Instagram:
Hashtags are clickable in Instagram posts, but links are not.
Instagram Business or Creator Account
Your Instagram account must be a Business or Creator Account and connected with a Facebook Page. The setup is free and easy.
See here for detailed instructions:
Instagram LinkingCarousel of Images and Videos
You can post multiple images or videos to Instagram as a carousel; up to a combined total of 10 images or videos may be use in a carousel. Just add your additional images or videos to the mediaUrls
array and the carousel will automatically be created.
Video URLs must end in a know extension such as mp4.
Instagram Reels
You can post a video to Instagram Reels API with the following instagramOptions
.
reels
: set totrue
to post the video to Reels.shareReelsFeed
: set totrue
to indicate that the Reel can appear in both the Feed and Reels tabs orfalse
to indicate the Reel can only appear in the Reels tab. This value is a hint to Instagram where you would like the Reel to appear, but neither value determines whether the Reel actually appears in the Reels or Feed tab because the Reel may not meet eligibility requirements or may not be selected by Instagram's algorithm.audioName
: Name of the audio music of your Reels media. You can only rename once, either while creating a reel or after from the audio page.coverUrl
: Please see here for details on coverUrl.thumbNailOffset
: Please see here for details on thumbNailOffset.
Please see the Reels API video requirements or an example of using the Instagram Reels API.
You may also set a Reels cover url and location & user tags.
Instagram Stories
You can post a single image or video as an Instagram Story with the following instagramOptions
. Instagram stories disappear after 24 hours.
Please see the Stories API requirements.
Instagram currently only supports Story publishing on Instagram Business Accounts and not Creator Accounts.
Video Thumbnail and Reels Cover URL
You may select a frame in the video or Reel as the thumbnail image. Also, Reels support a cover image from an external URL. Instagram does not support external cover images for regular videos.
The offset is the location in milliseconds of the thumbnail frame. Default value is 0
, which is the first frame of the video or Reel.
If you specify both a cover image URL and a thumbnail offset, the thumbnail offset will be ignored.
The Reel cover url must follow the Reels cover url requirements. Signed URLs with redirects are not guaranteed to be compatible with cover URLs. We recommend a non-signed URL or use the /media endpoint.
User Tags & Locations
The Instagram user will be notified when you use their username in a post. Please be cautious to not spam users or post with their username repeatedly. If you do, Instagram will suspend or deactivate your account.
An image or a Reel can be tagged with Instagram users and an image, video, or a Reel can be tagged with a location using the instagramOptions
parameter.
Location
A location is specified by a locationId,
which is a Facebook Page ID or Facebook Page name. For example, Facebook page Id of the Guggenheim Museum is 7640348500
or Facebook page name "@guggenheimmuseum"
. Pages must be associated with a physical location.
You can look up the locationId (Page Id) with the brand endpoint. Please note that the Page must have a location listed or the locationId will return an error.
Not supported on images or videos in carousels.
User Tags
Users are specified by a userTags
containing an Array of objects with an Instagram username and x/y coordinates (image only). User tags can be added for single images or Reels, but not regular videos, multiple images, or Stories.
Usernames must be public Instagram accounts. Do not include the @ of the user handle.
x
andy
values must befloat
numbers that originate from the top-left of the image, with a range of0.0
–1.0
. Single images. Do not include with Reels or an error will occur.
Instagram Mentions
Mention another Instagram handle by adding @handle in the post text. For example:
The @mentioned user will be notified of the mention. Be be cautios on spamming and review the important rules on mentions.
Collaborators
Instagram collaboration allows your to co-author content with other accounts. The public original author can tag another private or public account as a collaborator. The other account will receive a message to can either accept or deny the request. If the other account accepts, the post will also show on their profile and be distributed to their followers in Instagram feed. The post’s header will attribute the content to both accounts. Note, the original author can add or remove a collaborator at any time.
Only invite collaborators you expect to accept
your invite. If the collaborator responds with a declined
collaboration request, do not re-invite them until you contact them to understand the reason for the decline. Repeated declines from the same or multiple users will put your Instagram and Ayrshare account at risk of cancelation.
Invite up to three collaborators by with an array public Instagram usernames.
Stories and Carousels can not have collaborators.
These three collaborators will receive a message invitation in their Instagram mobile app and can accept or decline the invite, and then you may check the invited user request status. Please only invite collaborator who you know will accept your request or you Instagram account may be negatively affected.
Note about invited collaborators: With a few exceptions, data on or about co-authored media can only be accessed through the API by the user who published the media; collaborators are unable to access this data via the API.
Get Collaborator Request Status
GET
https://app.ayrshare.com/api
/post/collaborators/:id
Get the status of a request to a collaborator.
Headers
Name | Value |
---|---|
Authorization* | Format: |
Profile-Key | PROFILE_KEY |
Path Parameters
Name | Type | Description |
---|---|---|
id* | string |
Query Parmeters
Name | Type | Description |
---|---|---|
searchPlatformId | boolean | Set to |
Response
Auto Image Resize
Max Pack required.
Images are automatically resized to 1080 x 1080 px to work with Instagram with the autoResize parameter. Please note, this will resize the image for all included platforms, so we recommend making one call for Instagram and a different /post call for additional platforms.
Instagram Mentions
Mention other Instagram handles by simply including the handle beginning with the @ symbol in the post
text. For example:
Please see here for more information on mentions.
Used Quota
The Instagram response will include the current usedQuota
for the number of Instagram posts done over a rolling 24-hours period. Only 25 Instagram posts are permitted by Instagram in a 24-rolling-hour period.
If the quota has been reached, an error message will be returned.
FAQ
How do I add line breaks or rich text to a Instagram post?
Instagram line breaks can be added to a post with a special new line character.
Rich text, such as bold or italic lettering, can be added to a Instagram post with a few html elements.
Can I post Instagram Stories or Reels?
Instagram Stories posting is not yet supported by Facebook's official API integration. However Facebook Reels and Instagram Reels can be posted via Ayrshare's API.
Last updated