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

# Get payment



## OpenAPI

````yaml /reference/openapi.yaml get /payments/{paymentId}
openapi: 3.1.0
info:
  title: Finpace Core and AI Runtime API
  version: 1.0.0
  description: >-
    Core platform API for Finpace Halcyon covering customer, product, account,
    payment, lending, workflow, interaction, notification, and governed AI
    runtime capabilities.
servers:
  - url: https://api.finpace.tech
    description: Illustrative production endpoint
security:
  - bearerAuth: []
tags:
  - name: Parties
  - name: Customers
  - name: Agreements
  - name: Entitlements
  - name: Products
  - name: Pricing
  - name: Campaigns
  - name: Channels
  - name: Interactions
  - name: Accounts
  - name: Balances
  - name: Payments
  - name: Liquidity
  - name: Lending
  - name: Collateral
  - name: Cases
  - name: Documents
  - name: Notifications
  - name: AI Runtime
  - name: Events
  - name: Operations
paths:
  /payments/{paymentId}:
    get:
      tags:
        - Payments
      summary: Get payment
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Payment'
      security:
        - bearerAuth: []
components:
  schemas:
    Payment:
      type: object
      properties:
        paymentId:
          type: string
          example: pay_01J8YF6D
        debtorArrangementId:
          type: string
        amount:
          $ref: '#/components/schemas/Money'
        status:
          type: string
          example: pending_approval
        approvalRequired:
          type: boolean
      required:
        - paymentId
        - amount
        - status
    Money:
      type: object
      properties:
        currency:
          type: string
          example: EUR
        amount:
          type: string
          example: '1250.00'
      required:
        - currency
        - amount
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````