> ## 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 stations

> Retrieve all preparation and service stations for the venue



## OpenAPI

````yaml /api-reference/v2/openapi.json get /stations
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:
  /stations:
    get:
      tags:
        - Stations
      summary: List stations
      description: Retrieve all preparation and service stations for the venue
      parameters:
        - name: status
          in: query
          description: Filter by station status
          schema:
            type: integer
            enum:
              - 0
              - 1
        - name: can_print
          in: query
          description: Filter stations that can print order tickets
          schema:
            type: boolean
        - name: page
          in: query
          description: Page number for pagination (starts at 1)
          schema:
            type: integer
            minimum: 1
            default: 1
        - name: limit
          in: query
          description: Number of stations to return per page
          schema:
            type: integer
            minimum: 1
            maximum: 200
            default: 50
      responses:
        '200':
          description: Stations retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StationsResponse'
components:
  schemas:
    StationsResponse:
      type: object
      properties:
        success:
          type: boolean
        data:
          type: array
          items:
            $ref: '#/components/schemas/Station'
        total:
          type: integer
        time:
          type: integer
        timestamp:
          type: string
          format: date-time
    Station:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        status:
          type: integer
        can_print:
          type: boolean
        reminder_enabled:
          type: boolean
        description:
          type: string
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
  securitySchemes:
    xToken:
      type: apiKey
      in: header
      name: x-token
      description: JWT access token obtained from /v2/auth endpoint

````