Skip to content

Apps and Software

Updated: Apr 17, 2026

The Apps and Software API allows you to manage app and software catalog items such as mobile apps, desktop software, and games. You can read, update, and delete individual items using the /{apps-and-software-id} node.

Permissions

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

  • catalog_management

Reading

To retrieve an app or software item, send a GET request:

GET /v25.0/{apps-and-software-id} HTTP/1.1
Host: graph.facebook.com

Fields

The following table lists the fields of an app or software item.

FieldTypeRequiredDescription
idstringYesA unique content ID for the product. 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 app or software item.
namestringYesThe name of the product. Shown in ads. Character limit: 200. See title specifications⁠.
descriptionstringNoA short and relevant description of the product. 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 product. Links must begin with http:// or https://.
pricestringNoThe individual price of the app or software. Shown in ads. Don't 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. Don't use commas.
sale_pricestringNoThe discounted price of the app or software 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. Don't 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 name of the publisher of the product. Character limit: 100.
app_categoryenumNoType of application. Used to recommend your product to the right people. Supported values: * Games * Productivity * Social * Entertainment * Education * Utilities * Lifestyle * Health & Fitness * Business * Other
app_subcategorystringNoSubcategory of the application, such as arcade game. Used to recommend your product to the right people. Character limit: 200.
content_ratingstringNoOfficial rating of a product. Can be shown in ads. Required for restricted audiences in our Advertising policies⁠.
developerstringNoThe name of the developer of the product. Character limit: 100.
genrearray<string>NoThe genre or style of the game or app, such as action or puzzle. Character limit: 200.
user_ratingfloatNoThe average user rating the application has. Enter a rating between 0.0 to 5.0, using a single decimal place. Can be shown in ads.
rating_countintegerNoThe number of users who have left ratings on the application. Can be shown in ads.
operating_systemarray<enum>NoThe operating system or device on which the game or app can be used. Supported values: * iOS * Android * Windows * macOS * Linux * Chrome OS * Web * Other
google_product_categorystringNoThe Google product category for the product. You must enter a supported category from the latest downloadable list available on our Business Help Center⁠.
fb_product_categorystringNoThe Facebook product category for the product. You must enter a supported category from the latest downloadable list available on our Business Help Center⁠.
tagsarray<string>NoTags for product organization.
additional_image_urlsarray<string>NoAdditional image URLs for the product beyond the primary image. You can add up to 20 images.
video_urlsarray<string>NoURLs for videos of your product. Videos can appear in ads. 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. Don't use decimals or commas.
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_idintegerNoThe unique numeric identifier for the app on the Apple App Store.
applink_ios_app_namestringNoThe official name of the app as it appears on the Apple App Store.
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_packagestringNoThe unique package identifier for the Android app.
applink_android_classstringNoAndroid activity class name.
applink_android_app_namestringNoThe official name of the app as it appears on the Google Play Store.

Creating

To create app or software items in a catalog, you can use:

Updating

To update an app or software item, send a PUT request with the fields you want to change:

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

{
  "name": "Updated App Name",
  "description": "A powerful productivity app",
  "image_url": "https://example.com/app-icon.jpg"
}

All fields are optional for partial updates. The request updates only the fields you include in the request body.

For the full list of updatable fields, see the Fields section above.

Update response

A successful update returns the following response:

{
  "success": true
}

Deleting

To delete an app or software item, send a DELETE request:

DELETE /v25.0/{apps-and-software-id} HTTP/1.1
Host: graph.facebook.com

Delete response

A successful deletion returns the following 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