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

# Get merchant product by slug

> Get a single product by its slug



## OpenAPI

````yaml https://api.auctionnow.io/api/alpha/doc get /alpha/merchant/products/{slug}
openapi: 3.0.0
info:
  version: alpha
  title: Auction Now API
servers:
  - url: https://api.auctionnow.io/api
    description: Production API
security: []
paths:
  /alpha/merchant/products/{slug}:
    get:
      tags:
        - Products
      summary: Get merchant product by slug
      description: Get a single product by its slug
      parameters:
        - schema:
            type: string
            description: The unique slug of the product
          required: true
          description: The unique slug of the product
          name: slug
          in: path
        - schema:
            type: string
            description: Your Auction Now API key as a Bearer token
            example: Bearer ak_XXXXXXX
          required: true
          description: Your Auction Now API key as a Bearer token
          name: Authorization
          in: header
      responses:
        '200':
          description: Product details
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      _id:
                        type: string
                        description: Auction Now's unique identifier for the product
                      _creationTime:
                        type: number
                        description: >-
                          The time when the product was created, in milliseconds
                          since the Unix epoch
                      title:
                        type: string
                        description: The product title
                      description:
                        type: string
                        description: The product description
                      price:
                        type: number
                        description: The product price in USD
                      slug:
                        type: string
                        description: >-
                          A unique, human-readable, url-safe identifier for the
                          product
                      handle:
                        type: string
                        description: A human-readable identifier for the product
                      partyId:
                        type: string
                        description: A unique identifier for your merchant account
                      quantity:
                        type: number
                        description: Total units available
                      quantityAvailable:
                        type: number
                        description: Number of units still available for purchase
                      shippingCostUS:
                        type: number
                        description: Domestic (US) shipping cost in USD
                      shippingCostInternational:
                        type: number
                        description: International shipping cost in USD
                      status:
                        type: string
                        description: >-
                          Current product status (INSTOCK, SCHEDULED,
                          OUTOFSTOCK, DRAFT)
                      productType:
                        type: string
                        enum:
                          - PHYSICAL
                          - DIGITAL_FILE
                          - DIGITAL_LINK
                        description: The type of product
                      type:
                        type: string
                        enum:
                          - AUCTION_AND_PRODUCT
                          - PRODUCT_ONLY
                        description: Whether this product is linked to an auction
                      image:
                        type: string
                        description: URL of the primary product image
                      digitalLink:
                        type: string
                        description: The digital link URL, if applicable
                      customMessage:
                        type: string
                        description: Custom message for digital product delivery
                      url:
                        type: string
                        description: >-
                          The URL of the product on your AuctionNow.io
                          storefront
                      isArchived:
                        type: boolean
                        description: Whether this product is archived (hidden)
                    required:
                      - _id
                      - _creationTime
                      - title
                      - description
                      - slug
                      - handle
                      - partyId
                    description: The product details
                  message:
                    type: string
                  timestamp:
                    type: number
                required:
                  - data
                  - timestamp
        '400':
          description: Bad Request - Validation error or invalid input
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  error:
                    anyOf:
                      - type: string
                      - type: object
                        properties:
                          errors:
                            type: array
                            items:
                              type: string
                          properties:
                            type: object
                            properties:
                              data:
                                type: object
                                properties:
                                  errors:
                                    type: array
                                    items:
                                      type: string
                                  properties:
                                    type: object
                                    additionalProperties:
                                      type: object
                                      properties:
                                        errors:
                                          type: array
                                          items:
                                            type: string
                                      required:
                                        - errors
                                required:
                                  - errors
                                  - properties
                            required:
                              - data
                        required:
                          - errors
                          - properties
                required:
                  - message
                  - error
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  reason:
                    type: string
                required:
                  - error
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  reason:
                    type: string
                required:
                  - error
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  reason:
                    type: string
                required:
                  - error
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error

````