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

# Products currently on a time-boxed sale



## OpenAPI

````yaml /openapi/product-service.json get /v1/recommendations/flash-sales
openapi: 3.0.0
info:
  title: Asiko Product Service
  description: Product catalogue browsing, search, reviews, recommendations
  version: '1.0'
  contact: {}
servers:
  - url: https://asikodevapi.candourit.io
    description: Production (via api-gateway)
  - url: http://localhost:3000
    description: Local development (via api-gateway)
security: []
tags:
  - name: products
    description: ''
  - name: categories
    description: ''
  - name: brands
    description: ''
  - name: reviews
    description: ''
  - name: recommendations
    description: ''
  - name: media
    description: ''
paths:
  /v1/recommendations/flash-sales:
    get:
      tags:
        - recommendations
      summary: Products currently on a time-boxed sale
      operationId: RecommendationsController_flashSales
      parameters:
        - name: limit
          required: false
          in: query
          schema:
            type: string
      responses:
        '200':
          description: ''

````