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

# List Price Lists

> Retrieve all price lists. A price list is a named set of product prices that can be applied to specific venues or sales channels (for example, a separate menu price list for delivery).



## OpenAPI

````yaml /api-reference/v2/openapi.json get /price-lists
openapi: 3.1.0
info:
  title: Clopos Open API v2
  description: >-
    The **Clopos Open API v2** provides secure and unified access to the Clopos
    ecosystem, enabling seamless integration of POS, ordering, payments, and
    restaurant management services.
  contact:
    email: dev@clopos.com
  version: 2.0.0
  license:
    name: ''
servers:
  - url: https://integrations.clopos.com/open-api/v2
    description: '**Base Url**'
security:
  - xToken: []
tags:
  - name: Authentication
  - name: Venues
  - name: Users
  - name: Customers
  - name: Menu
  - name: Stations
  - name: Products
  - name: Price Lists
  - name: Sales
  - name: Orders
  - name: Receipts
paths:
  /price-lists:
    get:
      tags:
        - Price Lists
      summary: List Price Lists
      description: >-
        Retrieve all price lists. A price list is a named set of product prices
        that can be applied to specific venues or sales channels (for example, a
        separate menu price list for delivery).
      parameters:
        - name: limit
          in: query
          description: Maximum number of price lists to return per page (1-999).
          schema:
            type: integer
            minimum: 1
            maximum: 999
            default: 50
        - name: sort
          in: query
          description: >-
            Sort the results. Supported fields: id, name, created_at. Use array
            notation, e.g. sort[0][0]=name&sort[0][1]=asc.
          schema:
            type: array
            items:
              type: array
              items:
                type: string
          style: form
          explode: false
        - name: with[]
          in: query
          description: 'Include related data in the response. Supported values: prices.'
          schema:
            type: array
            items:
              type: string
              enum:
                - prices
          style: form
          explode: true
        - name: selects
          in: query
          description: Comma-separated list of fields to include in the response.
          schema:
            type: string
            example: id,name,status
      responses:
        '200':
          description: Price lists retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PriceListsResponse'
        '400':
          description: Invalid parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    PriceListsResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/PriceList'
        pagination:
          $ref: '#/components/schemas/Pagination'
    Error:
      type: object
      required:
        - error
        - message
      properties:
        error:
          type: string
        message:
          type: string
        details:
          type: object
    PriceList:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        description:
          type: string
          nullable: true
        status:
          type: boolean
        prices:
          type: array
          description: Included only when requested via with[]=prices.
          items:
            $ref: '#/components/schemas/PriceListPrice'
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    Pagination:
      type: object
      properties:
        page:
          type: integer
        per_page:
          type: integer
        total:
          type: integer
        total_pages:
          type: integer
    PriceListPrice:
      type: object
      properties:
        id:
          type: integer
        list_id:
          type: integer
        product_id:
          type: integer
        price:
          type: number
        product:
          description: Included only when requested via with[]=product.
          allOf:
            - $ref: '#/components/schemas/Product'
          nullable: true
        list:
          description: Included only when requested via with[]=list.
          allOf:
            - $ref: '#/components/schemas/PriceList'
          nullable: true
    Product:
      type: object
      properties:
        id:
          type: integer
        type:
          type: string
          enum:
            - GOODS
            - DISH
            - TIMER
            - PREPARATION
            - INGREDIENT
            - MODIFICATION
        name:
          type: string
        full_name:
          type: string
        status:
          type: integer
        price:
          type: number
        cost_price:
          type: number
        has_modifications:
          type: boolean
        modifications:
          type: array
          items:
            $ref: '#/components/schemas/Modification'
        modificator_groups:
          type: array
          items:
            $ref: '#/components/schemas/ModificatorGroup'
        recipe:
          type: array
          items:
            $ref: '#/components/schemas/RecipeItem'
        packages:
          type: array
          items:
            $ref: '#/components/schemas/Package'
        setting:
          $ref: '#/components/schemas/TimerSetting'
          nullable: true
        taxes:
          type: array
          items:
            $ref: '#/components/schemas/Tax'
        tags:
          type: array
          items:
            type: object
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    Modification:
      type: object
      properties:
        id:
          type: integer
        parent_id:
          type: integer
        type:
          type: string
          enum:
            - MODIFICATION
        name:
          type: string
        price:
          type: number
        cost_price:
          type: number
        barcode:
          type: string
          nullable: true
        full_name:
          type: string
        status:
          type: integer
    ModificatorGroup:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        type:
          type: integer
        min_select:
          type: integer
        max_select:
          type: integer
        modificators:
          type: array
          items:
            $ref: '#/components/schemas/Modificator'
    RecipeItem:
      type: object
      properties:
        id:
          type: integer
        type:
          type: string
          enum:
            - PREPARATION
            - INGREDIENT
            - DISH
        name:
          type: string
        cost_price:
          type: number
        pivot:
          type: object
          properties:
            gross:
              type: string
    Package:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        equal:
          type: integer
    TimerSetting:
      type: object
      properties:
        interval:
          type: integer
        prices:
          type: array
          items:
            type: object
            properties:
              price:
                type: number
              from:
                type: integer
    Tax:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        rate:
          type: number
    Modificator:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        price:
          type: number
        cost_price:
          type: number
        max_count:
          type: integer
        status:
          type: boolean
        ingredient:
          $ref: '#/components/schemas/Product'
          nullable: true
  securitySchemes:
    xToken:
      type: apiKey
      in: header
      name: x-token
      description: JWT access token obtained from /v2/auth endpoint

````