Seller Assistant API
HomeSeller AssistantHelp CenterAccount
HomeSeller AssistantHelp CenterAccount
Get API Keys
  1. SP-API
  • 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
  • Shipments
    • List inbound plans
    • Get inbound plan
    • List plan shipments
    • Get shipment
    • List shipment items
    • Get shipment fees
  • SP-API
    • 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

List shipment items

Developing
GET
https://app.sellerassistant.app/api/v1/sp-api/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}/items
SP-API
Proxy to https://developer-docs.amazon.com/sp-api/reference/listshipmentitems

Request

Path Params
inboundPlanId
required
Inbound Plan id (Workflow Id).
Example:
wf64bdf98e-986d-4bbe-8e20-7196e3aaa1d2
shipmentId
required
Shipment ID.
Example:
sh7059be6b-54b3-4320-8553-f913d3472cc3
Query Params
pageSize
optional
Integer 1 to 1000. Defaults to 10. The number of placement options to return in the response matching the given query.
Example:
20
paginationToken
optional
String length between 0 and 1024. A token to fetch a certain page when there are multiple pages worth of results. The value of this token is fetched from the pagination returned in the API response. In the absence of the token value from the query parameter the API returns the first page of the result.
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/inbound/fba/2024-03-20/inboundPlans/wf64bdf98e-986d-4bbe-8e20-7196e3aaa1d2/shipments/sh7059be6b-54b3-4320-8553-f913d3472cc3/items'

Responses

🟢200OK
application/json
Successful response
Body
items
array [object {8}] 
required
The items in a shipment.
asin
string 
required
The Amazon Standard Identification Number (ASIN) of the item.
>= 1 characters<= 10 characters
expiration
string <date> | null 
optional
The expiration date of the MSKU in YYYY-MM-DD format.
Match pattern:
^\d{4}-\d{2}-\d{2}$
fnsku
string 
required
A unique identifier assigned by Amazon to products stored in fulfillment centers.
>= 1 characters<= 10 characters
labelOwner
enum<string> 
required
Specifies who will label the items.
>= 1 characters<= 1024 characters
Allowed values:
AMAZONSELLERNONE
manufacturingLotCode
string  | null 
optional
>= 1 characters<= 256 characters
msku
string 
required
The merchant SKU identifier.
>= 1 characters<= 40 characters
prepInstructions
array [object {3}] 
required
quantity
integer 
required
The number of the specified MSKU.
>= 1<= 10000
pagination
object  | null 
optional
nextToken
string  | null 
optional
Token for pagination to fetch next page of results.
>= 1 characters<= 1024 characters
Example
{
    "items": [
        {
            "asin": "string",
            "expiration": "2019-08-24",
            "fnsku": "string",
            "labelOwner": "AMAZON",
            "manufacturingLotCode": "string",
            "msku": "string",
            "prepInstructions": [
                {
                    "fee": {
                        "amount": 10.5,
                        "code": "USD"
                    },
                    "prepOwner": "AMAZON",
                    "prepType": "ITEM_LABELING"
                }
            ],
            "quantity": 1
        }
    ],
    "pagination": {
        "nextToken": "string"
    }
}
🟠402402
🟠403Forbidden
🟠422Parameter Error
🟠429429
🔴500Server Error
Modified at 2025-07-02 12:57:50
Previous
Get shipment
Built with