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

# Get Products

> Returns all ACME products from the catalog that are currently available (and haven't exploded yet)

Retrieve a list of all available ACME products. Warning: Product availability may change without notice, especially if they've exploded.


## OpenAPI

````yaml GET /products
openapi: 3.1.0
info:
  title: Acme Corporation Product Catalog API
  description: >-
    The official API for managing ACME Corporation's wacky product catalog. Use
    at your own risk!
  license:
    name: ACME License - Explosions Not Covered
  version: 1.0.0
servers:
  - url: https://api.acmecorp.com
security:
  - bearerAuth: []
paths:
  /products:
    get:
      description: >-
        Returns all ACME products from the catalog that are currently available
        (and haven't exploded yet)
      parameters:
        - name: limit
          in: query
          description: >-
            The maximum number of products to return. Warning: Too many products
            may cause system overload!
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: Product catalog response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Product'
        '400':
          description: Unexpected error - product may have exploded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Product:
      required:
        - name
      type: object
      properties:
        name:
          description: The name of the ACME product (e.g., 'Rocket-Powered Roller Skates')
          type: string
        tag:
          description: >-
            Product category (e.g., 'explosive', 'transportation',
            'invisibility')
          type: string
        price:
          description: Product price in USD
          type: number
          format: float
        explosive:
          description: Whether this product is known to explode
          type: boolean
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
          description: Error message (may include explosion warnings)
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: ACME Bearer token (obtained with product purchase)

````