Skip to content

Media Titles

Updated: Jun 30, 2026

The Media Title API allows you to manage streaming media content items (movies, TV shows, music) in a product catalog. You can read, update, and delete individual media title items using the /{media-title-id} node.

Permissions

To use this API, your app needs the following permission:

  • catalog_management

Reading

To retrieve a media title item, send a GET request:

GET /v25.0/{media-title-id} HTTP/1.1
Host: graph.facebook.com

Fields

FieldTypeRequiredDescription
idstringYesA unique content ID for the item. Each content ID must appear only once in your catalog. To run Advantage+ catalog ads, this ID must exactly match the content ID for the same product in your Meta Pixel code. Character limit: 100.
retailer_idstringYesRetailer-provided unique identifier for the media title.
namestringYesThe title of the product. Shown in ads. Character limit: 200. See title specifications⁠.
descriptionstringNoA short and relevant description of the product such as a plot summary for a movie. Shown in ads. Use plain text and don't enter text in all capital letters. Character limit: 9999. See description specifications⁠.
image_urlstringYesThe URL for the main image of your product. Shown in ads. Must be in a supported format (JPG/PNG) and at least 500 x 500 pixels. See image specifications⁠.
urlstringYesThe link to the specific product page on your business's website, where people can learn more about or buy this item. Links must begin with http:// or https://.
pricestringNoThe individual price of the media. Shown in ads. Do not enter a subscription price. Format the price as a number followed by the 3-letter currency code (ISO 4217 standards). Use a period (.) as the decimal point, do not use commas.
sale_pricestringNoThe discounted price of the media if it's on sale. Format the price as a number followed by the 3-letter currency code (ISO 4217 standards). Use a period (.) as the decimal point, do not use commas. A sale price is required if you want to use an overlay for discounted prices.
currencystringNoISO 4217 currency code for the price.
brandstringNoThe streaming service or platform where this product is available. Character limit: 100.
media_categoryenumNoThe content category of the product. Used to recommend your products to the right audiences. Values: Movie, Music, TV Show, Other.
genrearray<string>NoThe media genre such as action or comedy. Used to recommend your products to the right people. Character limit: 200.
content_ratingstringNoOfficial rating of a media title. Can be shown in ads. Required for restricted audiences in our Advertising policies⁠.
release_datestringNoThe release date of the product. Use the format YYYY-MM-DD.
directorarray<string>NoA director of a production like a movie or radio show. Character limit: 200.
actorarray<string>NoAn actor in a production such as a movie or TV show. Character limit: 200.
awardarray<string>NoAny notable awards or nominations. Character limit: 200.
featuringarray<string>NoThe names of key individuals involved in the production of the media title such as artists or producers. Character limit: 200.
production_companyarray<string>NoThe production company or studio that created the product. Character limit: 200.
durationstringNoThe duration of the product. Use the format HH-MM-SS (ISO 8601 standard). For example: 02-34-15.
global_unique_identifierstringNoAny identifier that represents a work of film or television. For example: EIDR (Entertainment Identifier Registry).
tagsarray<string>NoTags for product organization.
additional_image_urlsarray<string>NoAdditional image URLs for the media title beyond the primary image. You can add up to 20 images.
video_urlsarray<string>NoURLs for videos of your product. Videos can be shown in ads and make your ads more engaging. Must be a direct link to download the video file. You can add up to 20 videos.
custom_label_0 through custom_label_4stringNoAny relevant information you want to add to your ad creative such as in the headline.
custom_number_0 through custom_number_4integerNoAny number you want to filter products by when you create product sets. Use this to filter by number ranges (is greater than and is less than). Use whole numbers between 0 and 4294967295. Decimals and commas are not supported.
applink_ios_urlstringNoA deep link to your app on iOS. Used to send people from your ads to your app, if installed. If it isn't installed, redirects to your website or the App Store.
applink_ios_app_store_idintegerNoiOS App Store ID for the app.
applink_ios_app_namestringNoName of the iOS app.
applink_android_urlstringNoA deep link to your app on Android. Used to send people from your ads to your app, if installed. If it isn't installed, redirects to your website or Google Play.
applink_android_packagestringNoAndroid package name (e.g., com.example.app).
applink_android_classstringNoAndroid activity class name.
applink_android_app_namestringNoName of the Android app.

Creating

To create media title items in a catalog, you can use:

Updating

To update a media title item, send a PUT request with the fields you want to change:

PUT /v25.0/{media-title-id} HTTP/1.1
Host: graph.facebook.com
Content-Type: application/json

{
  "name": "Updated Title",
  "description": "A thrilling action movie",
  "image_url": "https://example.com/image.jpg"
}

All fields are optional for partial updates. The API updates only the fields included in the request body.

Update parameters

FieldTypeDescription
namestringName of the media title.
descriptionstringDescription of the media title.
image_urlstringURL of the primary image for the media title.
urlstringURL where the media title can be viewed or purchased.
priceintegerPrice in the smallest currency unit (e.g., cents).
sale_priceintegerSale price in the smallest currency unit.
currencystringISO 4217 currency code for the price.
brandstringBrand name of the media title.
media_categorystringMedia category classification.
genrearray<string>List of genres. Max 30 items.
content_ratingstringOfficial content rating (e.g., PG-13, R, TV-MA).
release_datestringRelease date of the media title.
directorarray<string>List of directors. Max 30 items.
actorarray<string>List of actors. Max 30 items.
awardarray<string>List of awards received. Max 30 items.
featuringarray<string>List of featured artists or guests. Max 30 items.
production_companyarray<string>List of production companies. Max 30 items.
durationstringDuration of the media title (e.g., 120 min, PT2H).
global_unique_identifierstringGlobal unique identifier (e.g., EIDR, ISAN).
tagsstringComma-separated tags for product organization (e.g., "label1,label2").
additional_image_urlsarray<string>Additional image URLs for the media title.
video_urlsarray<string>Video URLs. Max 20 items.
custom_label_0 through custom_label_4stringCustom label fields.
custom_number_0 through custom_number_4integerCustom number fields.

Update response

{
  "success": true
}

Deleting

To delete a media title item, send a DELETE request:

DELETE /v25.0/{media-title-id} HTTP/1.1
Host: graph.facebook.com

Delete response

{
  "success": true
}

Unofficial mirror for reference/search purposes. All content originates from developers.facebook.com — see the source link at the top of each page. Machine-readable indexes: llms.txt · llms-full.txt · About