Navigate WMS
  1. Product Catalog
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
    • Get Inventory Details
  • 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. Product Catalog

Get Items

Sandbox
https://sandbox.trynavigate.co/api/v1
Sandbox
https://sandbox.trynavigate.co/api/v1
POST
/items
Sellers can use this API endpoint to retrieve a
combined list of their products and bundles
in a single call.
Items are returned in pages of a specified size at a time.
It is also possible to retrieve items matching
specific keywords - see the list of API parameters
for details. Search keywords are match against text
fields of items such as title, SKU and ASIN.

Request

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

Responses

🟢200OK
application/json
Success.
Body

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://sandbox.trynavigate.co/api/v1/items?search&pageNumber&pageSize' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "status": 200,
    "message": "Success",
    "payload": {
        "items": [
            {
                "sku": "1887397557",
                "productTitle": "Sandalwood Incense Sticks | 100% Natural Organic | Long-Lasting and Soothing fragrances for Meditation, Aromatherapy and Relaxation",
                "description": "string",
                "productType": "PRODUCT",
                "dimensionsUnit": "METRIC",
                "length": 1,
                "width": 1,
                "height": 1,
                "weight": 3.5,
                "prepOwner": "MARKETPLACE",
                "labelOwner": "MARKETPLACE",
                "asin": "B00FXNAAW2",
                "barcode": "86523112488678564",
                "condition": "New",
                "active": true,
                "warehouseInventory": 0,
                "trackLotNumber": false,
                "trackExpiryDate": false,
                "imageUrl": null,
                "otherImages": null,
                "additionalAttributes": [
                    {
                        "name": "Color",
                        "value": "Golden Brown"
                    }
                ],
                "createdDate": "2025-07-25",
                "lastUpdatedDate": "2025-07-25"
            }
        ]
    }
}
Modified at 2025-11-12 03:20:50
Previous
Activate/Deactivate Supply
Next
Inventory API
Built with