> ## 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 variant serials

> Developer API operation for GET /dev/v1/products/{id}/variants/{variantId}/serials.



## OpenAPI

````yaml /openapi.json get /dev/v1/products/{id}/variants/{variantId}/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}/variants/{variantId}/serials:
    get:
      tags:
        - Products
      summary: List product variant serials
      description: >-
        Developer API operation for GET
        /dev/v1/products/{id}/variants/{variantId}/serials.
      operationId: getDevV1ProductsByIdVariantsByVariantIdSerials
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
        - name: variantId
          in: path
          required: true
          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: variant_1
                      variant_title: Gold
                      created_at: '2026-03-15T12: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.

````