v9

latestOpenAPI 3.0.1Apache License 2.0raw.githubusercontent.com2026-08-01994159.4 KB
fulfillmentOutbound
offers

Retrieve delivery options that include an estimated delivery date and offer expiration, based on criteria that you specify.

Usage Plan:

Rate (requests per second)Burst
530

The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see Usage Plans and Rate Limits in the Selling Partner API.

post/fulfillment/outbound/2026-07-04/offers

Headers

x-amzn-fulfillment-service-idstring

The identifier of the fulfillment service used for this operation.

Request body

Example request

{
  "fulfillmentConfiguration": {
    "serviceLevel": {
      "serviceTiers": [
        "STANDARD",
        "EXPEDITED"
      ]
    }
  },
  "origin": {
    "countryCode": "US"
  },
  "destination": {
    "deliveryAddress": {
      "countryCode": "US",
      "postalCode": "98103"
    },
    "ipAddress": "192.168.0.1"
  },
  "items": [
    {
      "productIdentifier": {
        "amazonSku": "FRN-DSK-MCM-WAL-001"
      }
    },
    {
      "productIdentifier": {
        "amazonSku": "FRN-DSK-MCM-CHR-001"
      }
    }
  ]
}

Response

Success.

Example response

{
  "offerResults": [
    {
      "item": {
        "productIdentifier": {
          "amazonSku": "FRN-DSK-MCM-WAL-001"
        }
      },
      "offers": [
        {
          "fulfillmentConfiguration": {
            "serviceLevel": {
              "serviceTier": "STANDARD",
              "deliveryInterval": {
                "startTime": "2026-05-02T12:00:00Z",
                "endTime": "2026-05-03T23:59:00Z"
              }
            }
          },
          "expiryTime": "2026-04-30T12:00:00Z"
        },
        {
          "fulfillmentConfiguration": {
            "serviceLevel": {
              "serviceTier": "EXPEDITED",
              "deliveryInterval": {
                "startTime": "2026-04-30T18:00:00Z",
                "endTime": "2026-05-01T18:00:00Z"
              }
            }
          },
          "expiryTime": "2026-04-30T12:00:00Z"
        }
      ]
    },
    {
      "item": {
        "productIdentifier": {
          "amazonSku": "FRN-DSK-MCM-CHR-001"
        }
      },
      "offers": [
        {
          "fulfillmentConfiguration": {
            "serviceLevel": {
              "serviceTier": "STANDARD",
              "deliveryInterval": {
                "startTime": "2026-05-03T12:00:00Z",
                "endTime": "2026-05-05T23:59:00Z"
              }
            }
          },
          "expiryTime": "2026-04-30T12:00:00Z"
        }
      ],
      "constraints": [
        {
          "message": "EXPEDITED delivery unavailable for FRN-DSK-MCM-CHR-001",
          "type": "ValidationError",
          "code": "DeliverySLAUnavailable",
          "details": [
            {
              "type": "serviceTier",
              "value": "EXPEDITED"
            },
            {
              "type": "amazonSku",
              "value": "FRN-DSK-MCM-CHR-001"
            }
          ]
        }
      ]
    }
  ]
}