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

# List product serials

> Returns unlinked inventory serials for a base serial product that does not use variants. Each serial item includes its `id`, and that `id` is the value you pass inside `serial_ids` when calling `DELETE /dev/v1/products/{id}/serials`. Use the variant serial routes only when the product inventory is tracked per variant.



## OpenAPI

````yaml /openapi.json get /dev/v1/products/{id}/serials
openapi: 3.0.3
info:
  title: Shoppex Developer API
  description: Mintlify-compatible Developer API reference for Shoppex.
  version: 1.0.0
  contact:
    name: Shoppex Support
    email: support@shoppex.io
    url: https://shoppex.io
servers:
  - url: https://api.shoppex.io
security:
  - bearerAuth: []
paths:
  /dev/v1/products/{id}/serials:
    get:
      tags:
        - Products
      summary: List product serials
      description: >-
        Returns unlinked inventory serials for a base serial product that does
        not use variants. Each serial item includes its `id`, and that `id` is
        the value you pass inside `serial_ids` when calling `DELETE
        /dev/v1/products/{id}/serials`. Use the variant serial routes only when
        the product inventory is tracked per variant.
      operationId: getDevV1ProductsByIdSerials
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
        - name: page
          in: query
          required: false
          schema:
            type: string
        - name: limit
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    additionalProperties: true
                example:
                  data:
                    - id: serial_1
                      serial: ABC-123
                      variant_id: null
                      variant_title: null
                      created_at: '2026-03-16T10:00:00.000Z'
                  pagination:
                    total: 21
                    page: 2
                    limit: 10
                    total_pages: 3
                    has_more: true
      deprecated: false
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: Use your Shoppex API key in the Authorization header.

````