> ## Documentation Index
> Fetch the complete documentation index at: https://api-docs.quivo.co/llms.txt
> Use this file to discover all available pages before exploring further.

# List items

> List items for the specified seller within the specified warehouse.



## OpenAPI

````yaml /openapi.json get /items/{warehouseId}/{sellerId}
openapi: 3.0.1
info:
  title: Connector
  version: 80f7edc, 2026-01-23T12:01:00Z
  description: Enhanced Quivo API documentation with additional descriptions and examples
  contact:
    name: Quivo Support
    email: support@quivo.co
    url: https://quivo.co
  license:
    name: Proprietary
    url: https://quivo.co/terms
  termsOfService: https://quivo.co/terms
servers:
  - url: https://api.quivo.co/
    description: Production API server for Quivo Connector
security: []
tags:
  - name: addresses
    description: Manage stored addresses in the seller's address book
  - name: apiKeyRequests
    description: Request and manage API keys
  - name: articles
    description: Create and manage product articles
  - name: audits
    description: Access audit logs and history
  - name: bundles
    description: Manage product bundles
  - name: carriers
    description: Get carrier information
  - name: contacts
    description: Manage contact information
  - name: countries
    description: Get country information
  - name: currencies
    description: Get currency information
  - name: customerInquiries
    description: Manage customer inquiries
  - name: dashboards
    description: Access dashboard data
  - name: files
    description: Manage file uploads and downloads
  - name: fulfillmentPlans
    description: Manage fulfillment plans
  - name: inbounds
    description: Manage inbound shipments
  - name: items
    description: Monitor and manage inventory items
  - name: languages
    description: Get language information
  - name: notifications
    description: Manage notifications
  - name: orders
    description: Create and manage fulfillment orders
  - name: ping
    description: Health check endpoint
  - name: returnApp
    description: Manage return applications
  - name: returnLinks
    description: Manage return links
  - name: returns
    description: Manage returns
  - name: sellers
    description: Get seller information
  - name: shipments
    description: Book and manage shipments
  - name: shippingServiceGroups
    description: Get shipping service groups
  - name: shopOrders
    description: Manage shop orders
  - name: shops
    description: Manage shops
  - name: status
    description: Get system status
  - name: storedAddresses
    description: Manage stored addresses
  - name: subscriptionPackages
    description: Manage subscription packages
  - name: subscriptions
    description: Manage webhook subscriptions
  - name: track
    description: Track shipments
  - name: transports
    description: Manage transport services
  - name: users
    description: Manage users
  - name: warehouses
    description: Get warehouse information
paths:
  /items/{warehouseId}/{sellerId}:
    get:
      tags:
        - items
      summary: List items
      description: List items for the specified seller within the specified warehouse.
      operationId: itemGetWarehouseSeller
      parameters:
        - name: warehouseId
          in: path
          description: >-
            The unique identifier for the warehouse location where items are
            stored and orders are fulfilled.
          required: true
          schema:
            type: integer
            format: int64
        - name: sellerId
          in: path
          required: true
          schema:
            type: integer
            format: int64
          description: >-
            The unique identifier for the seller account. This ID is used to
            scope operations to a specific seller's data and resources.
        - name: query
          in: query
          schema:
            type: string
          description: >-
            Search query string used to filter results. This field supports
            specific syntax for filtering across multiple fields.
        - name: sort
          in: query
          schema:
            type: string
          description: >-
            Optional sorting criteria for the results. Format is typically
            'field:direction' (e.g., 'created:desc').
        - name: page
          in: query
          schema:
            type: integer
            format: int64
          description: >-
            The page number to retrieve when using offset-based pagination.
            Ignored if 'searchAfter' is provided.
        - name: searchAfter
          in: query
          schema:
            type: string
          description: >-
            Used for cursor-based pagination. Pass the 'sort' key value from the
            last item of the previous page to retrieve the next set of results
            efficiently. Overrides 'page'.
        - name: pageSize
          in: query
          schema:
            type: integer
            format: int64
          description: >-
            The maximum number of items to return per page. Used for both offset
            and cursor-based pagination.
      responses:
        '200':
          description: >-
            Returns an array of inventory item summaries with stock levels and
            location information.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ItemInfo'
        '400':
          description: >-
            Bad request - the request payload is invalid, missing required
            fields, or contains invalid data.
        '401':
          description: >-
            Unauthorized - authentication credentials are missing, invalid, or
            expired.
        '404':
          description: >-
            Not found - the requested resource does not exist or is not
            accessible.
        '500':
          description: Internal server error - an unexpected error occurred on the server.
components:
  schemas:
    ItemInfo:
      type: object
      properties:
        sku:
          type: string
          description: Stock Keeping Unit (SKU) identifier
        warehouseSku:
          type: string
          description: Stock Keeping Unit (SKU) identifier
        sellerSku:
          type: string
          description: Stock Keeping Unit (SKU) identifier
        name:
          type: string
          description: The name of the item
        barcode:
          type: string
          description: Code or identifier
        countryOfOrigin:
          type: string
          description: Country code or name
        tariffNumber:
          type: string
          description: Number value
        sellerIdentifier:
          type: string
          description: The unique identifier for the sellerentifier
        lotRequired:
          type: boolean
          description: Indicates whether lot is required
        restrictedShipping:
          type: boolean
          description: Boolean flag indicating restricted shipping
        weight:
          type: number
          description: Weight value
        quantity:
          type: integer
          format: int32
          description: Quantity or amount
        inventory:
          type: integer
          format: int32
          description: Array of target SKU configurations for the fork operation
        inbound:
          type: integer
          format: int32
          description: The inbound numeric value
        reserved:
          type: integer
          format: int32
          description: The reserved numeric value
        articleDeletedAt:
          type: string
          format: date-time
          description: The article deleted at timestamp
        warehouseId:
          type: integer
          format: int64
          description: The unique identifier for the warehouse
        itemId:
          type: integer
          format: int64
          description: The unique identifier for the item
        itemInventories:
          type: array
          items:
            $ref: '#/components/schemas/ItemInventoryInfo'
          description: Array of item inventorie
        expirationDateRequired:
          type: boolean
          description: The expiration date required date
        serialNumberRequired:
          type: boolean
          description: Indicates whether serial number is required
        canShipWithoutCarton:
          type: boolean
          description: Boolean flag indicating can ship without carton
        hasItemLedgerEntries:
          type: boolean
          description: Boolean flag indicating has item ledger entries
        articleId:
          type: integer
          format: int64
          description: The unique identifier for the article
        articleIdentifier:
          type: string
          description: The unique identifier for the articleentifier
        articleType:
          type: string
          enum:
            - PRODUCT
            - CARTON
          description: The type or category of the article
        articleName:
          $ref: '#/components/schemas/StringI18nDetail'
        sort:
          $ref: '#/components/schemas/JsonNode'
      description: >-
        Inventory item information. Contains warehouse item details including
        SKU, quantity, location, lot numbers, and availability status.
    ItemInventoryInfo:
      type: object
      properties:
        lot:
          type: string
          description: The lot value
        expiration:
          type: string
          format: date-time
          description: The expiration timestamp
        quantity:
          type: integer
          format: int32
          description: Quantity or amount
        locationBlocked:
          type: boolean
          description: Boolean flag indicating location blocked
        storage:
          type: string
          description: Array of target SKU configurations for the fork operation
        location:
          type: string
          description: The location value
        blockedReason:
          type: string
          description: The blocked reason
      description: 'The '
    StringI18nDetail:
      type: object
      properties:
        value:
          maxLength: 255
          minLength: 0
          type: string
          description: The value value
        language:
          type: string
          enum:
            - DE
            - EN
            - ES
            - PT
            - FR
            - IT
            - ZH
          description: 'The language. Possible values: DE, EN, ES, PT, FR (and 2 more)'
      description: Detailed information for stringi18n
    JsonNode:
      type: object
      properties:
        short:
          type: boolean
          description: Indicates whether short is enabled or active
        nodeType:
          type: string
          enum:
            - ARRAY
            - BINARY
            - BOOLEAN
            - MISSING
            - 'NULL'
            - NUMBER
            - OBJECT
            - POJO
            - STRING
          description: The type or category of the node
        float:
          type: boolean
          description: Indicates whether float is enabled or active
        binary:
          type: boolean
          description: Indicates whether binary is enabled or active
        number:
          type: boolean
          description: Number value
        integralNumber:
          type: boolean
          description: Number value
        boolean:
          type: boolean
          description: Indicates whether boolean is enabled or active
        double:
          type: boolean
          description: Indicates whether double is enabled or active
        long:
          type: boolean
          description: Indicates whether long is enabled or active
        int:
          type: boolean
          description: Indicates whether int is enabled or active
        valueNode:
          type: boolean
          description: The value node value
        containerNode:
          type: boolean
          description: Boolean flag indicating container node
        missingNode:
          type: boolean
          description: Boolean flag indicating missing node
        object:
          type: boolean
          description: Indicates whether object is enabled or active
        pojo:
          type: boolean
          description: Indicates whether pojo is enabled or active
        floatingPointNumber:
          type: boolean
          description: Number value
        bigDecimal:
          type: boolean
          description: Boolean flag indicating big decimal
        bigInteger:
          type: boolean
          description: Boolean flag indicating big integer
        textual:
          type: boolean
          description: Indicates whether textual is enabled or active
        array:
          type: boolean
          description: Indicates whether array is enabled or active
        'null':
          type: boolean
          description: Indicates whether null is enabled or active
      description: 'The '

````