Sysco · Example Payload

Sysco Food Distribution Api Listproducts Example

Fortune 100Food DistributionFood ServiceSupply ChainFortune 100Wholesale

Sysco Food Distribution Api Listproducts Example is an example object payload from Sysco, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "path": "/products",
    "headers": {
      "Authorization": "Bearer {ACCESS_TOKEN}"
    },
    "parameters": {
      "category": "Protein",
      "keyword": "chicken breast",
      "page": 1,
      "pageSize": 20
    }
  },
  "response": {
    "status": 200,
    "body": {
      "items": [
        {
          "productId": "2394872",
          "name": "Sysco Classic Boneless Skinless Chicken Breast",
          "brand": "Sysco Classic",
          "category": "Protein",
          "gtin": "00030000310305",
          "packCount": 1,
          "size": "40 LB",
          "unitOfMeasure": "CS",
          "storageType": "frozen",
          "inStock": true,
          "nextReceiveDate": "2026-05-05",
          "description": "Boneless skinless chicken breast, individually quick frozen, 40 lb case"
        }
      ],
      "totalCount": 12,
      "page": 1
    }
  }
}