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

# Get receipt in HTML format.

> This endpoint returns a single receipt rendered as HTML.



## OpenAPI

````yaml openapi/receipts-v1.json GET /v1/receipts/{receiptId}
openapi: 3.0.1
info:
  title: Receipts.Api - V1
  version: v1
servers:
  - url: https://{host}/receipts
    description: Your Lobyco environment
    variables:
      host:
        default: your-environment.lobyco.net
        description: >-
          The API host for your Lobyco environment. Replace it with the host you
          were given — this placeholder does not resolve.
security:
  - oauth2: []
paths:
  /v1/receipts/{receiptId}:
    get:
      tags:
        - Service2Service
      summary: Get receipt in HTML format.
      description: This endpoint returns a single receipt rendered as HTML.
      parameters:
        - name: receiptId
          in: path
          description: The unique identifier of the receipt.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
components:
  securitySchemes:
    oauth2:
      type: apiKey
      name: Authorization
      in: header

````