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

# Get payment by ID

> Retrieves payment details by ID for the authenticated client



## OpenAPI

````yaml /api-reference/openapi.json get /api/v3/payments/{id}
openapi: 3.0.0
info:
  description: >-
    LauncX V3 API for integrators — create payments, run disbursements, and
    resolve bank payout destinations.
  title: LauncX API
  contact:
    name: LauncX Support
    email: support@launcx.com
  license:
    name: Proprietary
  version: '1.0'
servers:
  - url: https://live.launcx.com
    description: Production
  - url: https://v3.launcx.com
    description: Staging
security: []
paths:
  /api/v3/payments/{id}:
    get:
      tags:
        - Payments
      summary: Get payment by ID
      description: Retrieves payment details by ID for the authenticated client
      parameters:
        - name: x-api-key
          in: header
          description: Client API Key
          required: true
          schema:
            type: string
        - name: x-timestamp
          in: header
          description: Unix timestamp in milliseconds
          required: true
          schema:
            type: string
        - name: id
          in: path
          description: Payment ID (UUID)
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetPaymentResponse'
        '400':
          description: Invalid payment ID
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Invalid API key or unauthorized access
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Payment not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    GetPaymentResponse:
      type: object
      properties:
        amount:
          type: string
        client_id:
          type: string
        client_wallet_name:
          type: string
        created_at:
          description: ISO 8601 UTC
          type: string
          example: '2024-01-15T14:30:45Z'
        currency:
          type: string
        expired_at:
          description: ISO 8601 UTC
          type: string
          example: '2024-01-15T14:30:45Z'
        id:
          type: string
        net_amount:
          type: string
        paid_at:
          description: ISO 8601 UTC, nullable
          type: string
          example: '2024-01-15T14:30:45Z'
        payer_id:
          type: string
        platform_fee:
          type: string
        retrieval_reference_no:
          type: string
        settled_at:
          description: ISO 8601 UTC, nullable
          type: string
          example: '2024-01-15T14:30:45Z'
        status:
          type: string
        updated_at:
          description: ISO 8601 UTC
          type: string
          example: '2024-01-15T14:30:45Z'
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          example: invalid email or password

````