Seller Assistant API
HomeSeller AssistantHelp CenterAccount
HomeSeller AssistantHelp CenterAccount
Get API Keys
  1. SP-API FBA Shipments
  • Introduction
  • Authentication
  • Throttling
  • Error Handling
  • Marketplace IDs and Categories
  • User Info
    • Get current user info
      GET
  • Products
    • Get product info
      GET
    • Get product statistics
      GET
    • Calculate product profit
      POST
  • UPC-EAN-ASIN converters
    • Get product ASINs based on identifiers (UPC or EAN)
      GET
    • Get product identifiers (UPC, EAN, etc.) based on ASIN
      GET
  • Restrictions
    • Check ASIN restrictions
      GET
  • Sales Estimation
    • Estimate sales by ASIN
      GET
    • Estimate sales by BSR and category
      POST
  • Keepa
    • Get Keepa product
      GET
  • FBA Inbound Shipments
    • List inbound plans
    • Get inbound plan
    • List plan shipments
    • Get shipment
    • List shipment items
    • Get shipment fees
  • SP-API FBA Shipments
    • Get old shipments
      GET
    • Get shipment items
      GET
    • Get old shipment items by old shipment id
      GET
    • List inbound plans
      GET
    • Get inbound plan
      GET
    • List placement options
      GET
    • List transportation options
      GET
    • Get shipment
      GET
    • List shipment items
      GET
  1. SP-API FBA Shipments

Get old shipment items by old shipment id

GET
https://app.sellerassistant.app/api/v1/sp-api/fba/inbound/v0/shipments/{shipmentId}/items
SP-API FBA Shipments
Proxy to https://developer-docs.amazon.com/sp-api/reference/getshipmentitemsbyshipmentid. The limit is 60 requests per minute. Amazon seller account integration is required to make this request. You can do it here.

Request

Path Params
shipmentId
required
Shipment ID.
Example:
FBA18VL7CBZ0
Query Params
domain
optional
Amazon marketplace domain. Domain amazon.com is used by default if domain and marketplaceId are not provided. If both domain and marketplaceId are chosen, domain has bigger priority. Options: amazon.com, amazon.ca, amazon.co.uk, amazon.de, amazon.es, amazon.it, amazon.fr, amazon.in, amazon.com.mx, amazon.com.br.
Example:
amazon.com
marketplaceId
optional
Amazon marketplace id. Domain amazon.com is used by default if domain and marketplaceId are not provided. If both domain and marketplaceId are chosen, domain has bigger priority. See all options here.
Example:
ATVPDKIKX0DER

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://app.sellerassistant.app/api/v1/sp-api/fba/inbound/v0/shipments/FBA18VL7CBZ0/items'

Responses

🟢200OK
application/json
Successful response
Body
payload
object 
optional
ItemData
array[object (OldShipmentItem) {8}] 
optional
NextToken
string 
optional
Pagination token for next page of results
Example
{
    "payload": {
        "ItemData": [
            {
                "ShipmentId": "FBA3MXN6HN",
                "SellerSKU": "SKU12345",
                "FulfillmentNetworkSKU": "X00012345",
                "QuantityShipped": 10,
                "QuantityReceived": 8,
                "QuantityInCase": 2,
                "ReleaseDate": "2025-05-26",
                "PrepDetailsList": [
                    {
                        "PrepInstruction": "Polybagging",
                        "PrepOwner": "AMAZON"
                    }
                ]
            }
        ],
        "NextToken": "string"
    }
}
🟠402402
🟠403Forbidden
🟠422Parameter Error
🟠429429
🔴500Server Error
Modified at 2025-07-04 11:44:27
Previous
Get shipment items
Next
List inbound plans
Built with