Posting to Snapchat

The Snapchat API enables direct publishing of content to both Stories and Spotlight. Stories are temporary posts that disappear after 24 hours, while Spotlight posts are permanent and can help creators and businesses reach a wider audience.

There are three types of posts you can create on Snapchat:

Snapchat accepts either video or image media. Only one media item is allowed per post.

See Snapchat Media Guidelines and Snapchat Authorization for more information.

Stories

Stories are ephemeral Snaps viewable by friends, subscribers, and non-subscribers in the Snapchat app’s 4th tab Discover feed for up to 24-hours.

Publish a Snapchat story as you would any other post:

Publish a Snapchat story
{
  "post": "An amzing story",
  "platform": "snapchat",
  "mediaUrl": ["https://img.ayrshare.com/video.mp4"]
}

Saved Stories

Saved Stories are permanent Stories that are viewable on a Public Profile indefinitely.

Publish a Snapchat story with snapchatOptions and the savedStory option:

Publish a Snapchat saved story
{
  "post": "An amazing saved story",
  "platform": "snapchat",
  "mediaUrl": ["https://img.ayrshare.com/video.mp4"],
  "snapchatOptions": {
    "savedStory": true
  }
}

Spotlight

Spotlights are permanent video Snaps that are distributed and viewable on Spotlight, Snapchat’s entertainment platform for user-generated content. Spotlight offers a channel for creators and businesses to grow their audience on Snapchat.

Publish a Snapchat story with snapchatOptions and the spotlight option:

Publish a Snapchat spotlight
{
  "post": "An amazing spotlight",
  "platform": "snapchat",
  "mediaUrl": ["https://img.ayrshare.com/video.mp4"],
  "snapchatOptions": {
    "spotlight": true
  }
}