Skip to content

Feed API Reference

Updated: May 16, 2022

Items you want to sell on Facebook and Instagram are uploaded and managed using a catalog. For each catalog, a data feed should be provided in one of the supported formats (CSV, TSV, RSS XML, ATOM XML).

Note, to supplement or modify existing catalog data without modifying the raw, underlying data source, use a supplementary feed. Supplementary feeds can only update items in a catalog; they cannot create or delete items.

Uploading your products

You can manually create a product catalog in the Commerce Manager⁠, or programmatically. Upload or configure your products using the Product Feed API.

The product feed is the authoritative record used to update your catalog on Facebook, and Facebook fetches it periodically according to the configured interval. Store the product feed ID and use it to get upload status, errors, and to change upload schedule.

curl -X POST \
  -F 'access_token=<ACCESS_TOKEN>' \
https://graph.facebook.com/v25.0/<PRODUCT_CATALOG_ID>/product_feeds

Request

AttributeTypeRequiredDescription
namestringRequired
schedulescheduleRequiredThe configuration for fetching a feed in a recurrent manner. See schedule object below for more details.
update_onlyboolOptionalDefault: false Note, if value is set to false, the feed is treated as a replace feed. That means with every new incoming update, if Meta does not find the set of items created previously, Meta deletes them. When set to true, Meta creates new items and updates existing ones but does not delete items from the feed. You only need to provide ID to update existing items. This reduces time to fetch and process your file.
ingestion_source_typeenum {PRIMARY_FEED, SUPPLEMENTARY_FEED}Optional (Required for Supplementary Feeds)See Product Feed documentation.
primary_feed_idslist <numeric string>Optional (Required for Supplementary Feeds)See Product Feed documentation.

schedule object

Read the Product Feed Schedule specification for more details.

AttributeTypeRequiredDescription
urlstringRequiredThe location of the product feed to fetch.
intervalstringRequiredThe interval at which the product feed gets fetched.
hournumberOptionalHour of the day to fetch the product feed.

Scheduled feeds do not support uploads more frequently than once per hour. If you need to update inventory faster, please use the Catalog Batch API.

Response

{  
  "id": {PRODUCT_FEED_ID}  
}

Perform a one-time direct upload

Along with scheduled feed fetches, you can manually perform one-time uploads.

Example — Feed files hosted on a public location

curl -X POST \
  -F 'url="<URL>"' \
  -F 'access_token=<ACCESS_TOKEN>' \
  https://graph.facebook.com/v25.0/<PRODUCT_FEED_ID>/uploads

Example — Uploading feed files directly from the local machine. The path to the file needs to be changed according to your use case.

curl -X POST \
  -F 'file=@catalog.csv;type=text/csv' \
  -F 'access_token=<ACCESS_TOKEN>' \
  https://graph.facebook.com/v25.0/<PRODUCT_FEED_ID>/uploads

Optionally, you can set update_only to true. Meta creates new items and updates existing ones, but does not delete items from the feed. You only need to provide id to update existing items. This reduces time to fetch and process your file.

For example, to update only price and custom labels for 100 items in a feed, use direct upload. Provide a file with only id, price and custom_label_0 for those items and update_only set to true. Meta supports all listed file formats; the most common ones are TSV and CSV. See Supported Feed Formats for more information.

If your feed file is hosted on a server with basic HTTP authentication, you have the option to send both username and password.

For more information, see:

Feed format per use case

Feed FormatUse CaseSample Feed
CSVUpdate price and availability for a subset of items.Download (Right-Click and Save Link As)⁠
TSVReset sale_price and update custom_label_0 for a subset of itemsDownload (Right-Click and Save Link As)⁠

Handling product feed upload errors

Read the Product Feed Upload Errors documentation.

Check catalog upload errors and warnings after each upload session. To do this, go to the Diagnostics section of your Commerce Manager⁠, or use the Feed API to request a sampling of errors and warnings. Start by first querying for recent upload sessions.

Request

curl -X GET -G \
  -d 'access_token=<ACCESS_TOKEN>' \
https://graph.facebook.com/v25.0/<PRODUCT_FEED_ID>/uploads

Sample response

{  
  "data": [  
    {  
      "id": "{UPLOAD_SESSION_ID}​}",  
      "start_time": "2019-07-15T12:38:36+0000",  
      "end_time": "2019-07-15T12:38:47+0000"  
    }  
  ]  
}

Then, use the value returned in the id field to retrieve a sampling of errors and warnings.

Request

curl -X GET -G \
  -d 'access_token=<ACCESS_TOKEN>' \
https://graph.facebook.com/v25.0/<UPLOAD_SESSION_ID>/errors

Sample response

A fatal severity here means the item cannot be ingested by Meta; a warning severity means the recommended attributes are missing or malformed. In the case of a warning, Meta omits the problematic field and proceeds with mutating the other fields.

{  
  "data": [  
    {  
      "id": 1510567479166488,  
      "summary": "A required field is missing: price.",  
      "description": "Products need to have prices to run in ads. Include a price for each product in your data feed file and upload it again. Prices must include cost and an ISO currency code (for example: 10 USD instead of $10 for American dollars).",  
      "severity": "fatal",  
      "samples": {  
        "data": [  
          {  
            "row_number": 2,  
            "retailer_id": "yj9bpbpub5t8t22kgbq6",  
            "id": "1677559492523068"  
          },  
          {  
            "row_number": 5,  
            "retailer_id": "ujn33tvbyv2vmdpo7ecb",  
            "id": "1529743440653137"  
          }  
        ]  
      }  
    },  
    {  
      "id": 275241589314958,  
      "summary": "GTIN is incorrectly formatted",  
      "description": "Check that the GTIN (Global Trade Identification Number) for each of your products is in the correct format. Accepted types include UPC, EAN, JAN, and ISBN.",  
      "severity": "warning",  
      "samples": {  
        "data": [  
          {  
            "row_number": 4,  
            "retailer_id": "bxwb1pho9o43uxjxikcg",  
            "id": "538700559625644"  
          }  
        ]  
      }  
    }  
  ]  
}

Download a full product feed errors report

Getting a sampling of errors and warnings is often sufficient to fix most Product Feed Upload issues. However, you may need the full list of errors to do deeper analysis. To download a full list of errors and warnings, you must first query the most recent upload session (see section above).

You can request the full error report to be generated for a given upload session ID.

Request

curl -X POST \
  -F 'access_token=<ACCESS_TOKEN>' https://graph.facebook.com/v25.0/<UPLOAD_SESSION_ID>/error_report

Response

{  
  "success": true  
}

In case the report is not ready, repeat the last call after a few seconds. You can then download the report itself.

Request

curl -X GET -G \
  -d 'fields="error_report"' \
  -d 'access_token=<ACCESS_TOKEN>' \
https://graph.facebook.com/v25.0/<UPLOAD_SESSION_ID>

Response

{  
  "error_report": {  
    "report_status": "WRITE_FINISHED",  
    "file_handle": "{link-to-the-file-location}"  
  },  
  "id": "493476498092860"  
}

Find a URL that you can download with a tool such as wget or curl. The downloaded file contains the full error report.

If you get the error: "Cannot access an object not managed by the business owning this app", please make sure that the app you're using belongs to the business (Business Settings > Account > Apps).

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