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

# Get Receipt by CID

> Retrieve a receipt by the `cid` UUID terminals key it by. Returns the same payload as retrieving it by numeric id.



## OpenAPI

````yaml /api-reference/v2/openapi.json get /receipts/cid/{cid}
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
  - name: Inventory
  - name: Finance
paths:
  /receipts/cid/{cid}:
    get:
      tags:
        - Receipts
      summary: Get Receipt by CID
      description: >-
        Retrieve a receipt by the `cid` UUID terminals key it by. Returns the
        same payload as retrieving it by numeric id.
      parameters:
        - name: cid
          in: path
          description: Receipt CID (UUID)
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Request completed successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    $ref: '#/components/schemas/Receipt'
components:
  schemas:
    Receipt:
      type: object
      properties:
        id:
          type: integer
        venue_id:
          type: integer
        cid:
          type: string
        user_id:
          type: integer
        terminal_id:
          type: integer
        source:
          type: string
        customer_id:
          type:
            - integer
            - 'null'
        sale_type_id:
          type: integer
        guests:
          type: integer
        status:
          type: integer
        lock:
          type: boolean
        total:
          type: number
        subtotal:
          type: number
        payment_methods:
          type: array
          items:
            $ref: '#/components/schemas/PaymentMethodEntry'
        fiscal_id:
          type:
            - string
            - 'null'
        discount_type:
          type: integer
        discount_value:
          type: number
        service_charge:
          type: number
        delivery_fee:
          type: number
        order_status:
          type:
            - string
            - 'null'
        order_number:
          type:
            - string
            - 'null'
        created_at:
          type: string
        updated_at:
          type: string
        closed_at:
          type:
            - string
            - 'null'
        deleted_at:
          type:
            - string
            - 'null'
    PaymentMethodEntry:
      type: object
      required:
        - id
        - name
        - amount
      properties:
        id:
          type: integer
        name:
          type: string
        amount:
          type: number
  securitySchemes:
    xToken:
      type: apiKey
      in: header
      name: x-token
      description: JWT access token obtained from /v2/auth endpoint

````