This document shows you how to use the Facebook Stories API to publish Stories on Facebook Pages.
To publish a story, your app will perform the following steps:
This guide assumes you have read the Pages API Overview and implemented the needed components, and successfully completed the Get Started guide.
Your app users will need to be able to perform the CREATE_CONTENT task on the Page represented in the Page access token and give your app the following permissions:
pages_manage_posts pages_read_engagement pages_show_listIf you are using a business system user in your API requests, the business_management permission is also required.
You must provide a photo or video that fit the following specifications.
| Property | Specification |
|---|---|
File type | .jpeg, .bmp, .png, .gif, .tiff |
File size | Files can not exceed 10MB. For .png files, we recommend not exceeding 1MB or the image may appear pixelated. |
| Property | Specification | ||
|---|---|---|---|
File Type | .mp4 (recommended) | ||
Aspect Ratio | 9 x 16 | ||
Resolution | 1080 x 1920 pixels (recommended). Minimum is 540 x 960 pixels | ||
Frame Rate | 24 to 60 frames per second | ||
Duration | 3 to 90 seconds. A reel published as a story on a Facebook Page can not exceed 60 seconds. | ||
Video Settings |
| ||
Audio Settings |
|
GET requests to see a list of your stories, you must
turn your Facebook story archive on

When testing an API call, you can include the access_token parameter set to your access token. However, when making secure calls from your app, use the access token class.
Code examples within this document are formatted for readability. Replace bold, italics values, such as page_id, with your values.
To publish a video story on a Facebook Page, you will initialize a video upload session with Meta servers, upload the video to Meta servers, then publish the video story.
To initialize an upload session, send a POST request to the /page_id/video_stories endpoint, where page_id is the ID for your Facebook Page, with the upload_phase parameter set to start.
curl -X POST "https://graph.facebook.com/v24.0/page_id/video_stories" \
-d '{
"upload_phase":"start",
}'
On success, your app receives a JSON response with the ID for the video and the Facebook URL where you will be uploading the video.
{
"video_id": "video_id",
"upload_url": "https://rupload.facebook.com/video-upload/v24.0/video_id",
} Now that you have initialized an upload session and received the upload URL, you can upload your video. You can upload either:
To upload a hosted file, send a POST request to the upload_url endpoint you received in the initialization step with the following parameters:
file_url set to the URL for your video fileBe sure the host is rupload.facebook.com.
The API will now reject files hosted on sites that restrict access via robots.txt. Developers need to ensure that the hosting site allows the “facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)” user agent to fetch the hosted file.
Files hosted on Meta CDN (e.g.. fbcdn URLs) will get rejected. Instead, developers can use the crossposting feature to publish a video on multiple pages without uploading the video to each page. Refer to our detailed guidance on crossposting.
curl -X POST "https://rupload.facebook.com/video-upload/v24.0/video_id" \
-H "file_url: https://some.cdn.url/video.mp4"
To upload a local file, send a POST request to the upload_url endpoint you received in the initialization step with the following parameters:
offset set to 0file_size set to the total size in bytes of the video being uploadedcurl -X POST "https://rupload.facebook.com/video-upload/v24.0/video_id" \
-H "offset: 0" \
-H "file_size: file_size_in_bytes" \
--data-binary "@/path/to/file/my_video_file.mp4"
On upload success, your app receives a JSON response with success set to true.
{
"success": true
} If the video upload is interrupted, you can either restart the upload or resume it.
POST request and set offset to 0. POST request with offset set to the bytes_transfered value from a status check.To check a status of your video, during upload or publishing, send a GET request to the /video_id endpoint with the following parameter:
fields set to statuscurl -X GET "https://graph.facebook.com/v24.0/video_id" \
-d "fields=status"
On success, your app receives a JSON response that contains:
status object that contains:
video_status with a value of ready, processing, expired, or erroruploading_phase object with the following key-value pairs:
status set to in_progress, not_started, complete, or errorbytes_transfered set to the bytes that have been uploaded. can be used as the value for offset if the upload is interrupted.processing_phase object with the following key-value pairs:
status set to in_progress, not_started, complete, or errorprocessing_phase object with the following key-value pairs:
status set to in_progress, not_started, complete, or errorpublish_status set to published or not_publishedpublish_time set to a UNIX timestamp of the actual or published time
The following response shows a file that has been successfully uploaded.
{
"status": {
"video_status": "processing",
"uploading_phase": {
"status": "in_progress",
"bytes_transfered": 50002
},
"processing_phase": {
"status": "not_started"
}
"publishing_phase": {
"status": "not_started",
"publish_status": "published",
"publish_time": 234523452
}
}
}
|
The following response shows an error has occurred in the processing phase.
{
"status": {
"video_status": "processing",
"uploading_phase": {
"status": "complete"
},
"processing_phase": {
"status": "not_started",
"error": {
"message": "Resolution too low. Video must have a minimum resolution of 540p."
}
}
"publishing_phase": {
"status": "not_started"
}
}
}
|
To publish your video story to your Page, you will send a POST to the /page_id/video_stories endpoint with the following parameters:
video_id set to the ID for your uploaded videoupload_phase set to finishcurl -X POST "https://graph.facebook.com/v24.0/page_id/video_stories" \
-d '{
"video_id": "video_id",
"upload_phase": "finish"
}'
On success, your app receives a JSON response that contains the following key-value pairs:
success set to truepost_id set to the ID for your story post{
"success": true,
"post_id": 1234
}
Visit the
Page Posts Reference
to learn how to upload a photo to Meta servers using the /page_id/photos endpoint. Be sure to include the published parameter and set it to false.
To publish your photo story to your Page, you will send a POST to the /page_id/photo_stories endpoint with the following parameters:
photo_id set to the ID for your uploaded photocurl -X POST "https://graph.facebook.com/v24.0/page_id/photo_stories" \
-d '{
"photo_id": "photo_id"
}'
On success, your app receives a JSON response that contains the following key-value pairs:
success set to truepost_id set to the ID for your story post{
"success": true,
"post_id": 1234
}
To get a list of all stories for a Page and data about each story, send a GET request to the /page_id/stories endpoint where page_id is the ID for the Page you want to view.
curl -i -X GET "https://graph.facebook.com/v24.0/page_id/stories"
On success, your app receives a JSON response with an array of objects where each object contains information about a story published on the Page. Each object contains the following key-value pairs:
post_id set to the ID for the published story poststatus set to PUBLISHED, ARCHIVEDcreation_time set to UNIX timestamp when the story was publishedmedia_type set to either video or photomedia_id set to the ID for the video or photo in the story posturl set to the Facebook URL for the story post, such as https://facebook.com/stories/8283482737484972{
"data": [
{
"post_id": "post_id",
"status": "PUBLISHED",
"creation_time": "123456",
"media_type": "video",
"media_id": "video_id",
"url": "https://facebook.com/stories…"
},
{
"post_id": "post_id",
"status": "PUBLISHED",
"creation_time": "123456",
"media_type": "photo",
"media_id": "photo_id",
"url": "https://facebook.com/stories…"
},
{
"post_id": "post_id",
"status": "ARCHIVED",
"creation_time": "123456",
"media_type": "photo",
"media_id": "photo_id",
"url": "https://facebook.com/stories…"
},
...
],
}
You can filter stories by status, published or archived, and date, using the since and until parameters.
Learn more about the endpoints and concepts discussed in this guide.