Navigate WMS
  1. Inventory
Navigate WMS
  • Navigate WMS
    • Introduction
  • Authentication
    • Authentication API
    • Authenticate User
      POST
  • Locations
    • Locations API
    • Get Locations
      GET
    • Add Location
      POST
    • Update Location
      PUT
    • Get Prep Locations
      GET
  • Product Catalog
    • Product Catalog API
    • Get Products
      POST
    • Add Product
      PUT
    • Get Product Details
      GET
    • Update Product
      PUT
    • Activate/Deactivate Product
      PATCH
    • Get Bundles
      POST
    • Add Bundle
      PUT
    • Get Bundle Details
      GET
    • Update Bundle
      PUT
    • Activate/Deactivate Bundle
      PATCH
    • Get Supplies
      POST
    • Add Supply
      PUT
    • Get Supply Details
      GET
    • Update Supply
      PUT
    • Activate/Deactivate Supply
      PATCH
    • Get Items
      POST
  • Inventory
    • Inventory API
    • Get Inventory
      POST
    • Get Inventory Details
      GET
  • Orders
    • Get Inbound Orders
    • Create Inbound Order
    • Get Inbound Order Details
    • Update Inbound Order
    • Cancel Inbound Order
    • Get Prep Orders
    • Create Prep Order
    • Get Prep Order Details
    • Update Prep Order
    • Cancel Prep Order
    • Get Manual Orders
    • Create Manual Order
    • Get Manual Order Details
    • Update Manual Order
    • Cancel Manual Order
  • Miscellaneous
    • Get Package Types
    • Get Prep Services
  1. Inventory

Get Inventory

Sandbox
https://sandbox.trynavigate.co/api/v1
Sandbox
https://sandbox.trynavigate.co/api/v1
POST
/inventory
Provides a quick summary of product inventory available
across prep locations. Allows sellers to quickly check
inventory distribution across the network of warehouses.
Inventory summary is provided in batches of 20 records at
a time. It is also arranged in reverse chronological order
of inventory changes - inventory items that have been most
recently added or updated are fetched first. For example,
an inventory item updated on January 3 will be fetched
before an inventory item updated on January 1 of the same
year and December 15 of the previous year.
Sellers can also request inventory summary for a particular
prep location and/or products matching specific search
criteria. See the request details for example.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Body Params application/json

Examples

Responses

🟢200OK
application/json
Success.
Body

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://sandbox.trynavigate.co/api/v1/inventory' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "address": 650312,
    "product": "B85XLH8PEF",
    "page": 0,
    "pageSize": 10
}'
Response Response Example
200 - Example 1
{
    "total": 12,
    "stock": [
        {
            "id": 629245037664407,
            "sku": "B85XLH8PEF",
            "productTitle": "Samsung QN85Q60RAFXZA Flat 85-Inch QLED 4K Q60 Series (2019) Ultra HD Smart TV with HDR and Alexa Compatibility",
            "asin": "B85XLH8PEF",
            "barcode": "B85XLH8PEF",
            "addressLine1": "975 Florida Central Pkwy",
            "city": "Longwood",
            "prepLocationName": "AMZ Prep",
            "postalCode": "32750",
            "quantity": 59,
            "prepOwner": "MARKETPLACE",
            "labelOwner": "MARKETPLACE",
            "description": "A detailed description of the product.",
            "fullAddress": "975 Florida Central Pkwy, Longwood, FL, 32750",
            "lastUpdated": "2025-08-05T00:00:00.000Z",
            "modifiedAt": "2025-08-05T04:50:23.693Z",
            "productPicture": "https://m.media-amazon.com/images/I/91uohwV+k3L.jpg"
        }
    ],
    "page": 0,
    "pageSize": 1
}
Modified at 2025-11-12 03:20:50
Previous
Inventory API
Next
Get Inventory Details
Built with