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

# Get a Settlement



## OpenAPI

````yaml GET /v1/settlements/{id}
openapi: 3.1.0
info:
  title: Plexos Pay API
  description: Mobile Money Payment Gateway for African Markets
  version: 1.0.0
  contact:
    name: Plexos Pay
    url: https://plexospay.com
servers:
  - url: https://api.plexospay.com
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/settlements/{id}:
    get:
      tags:
        - Settlements
      summary: Get a settlement
      operationId: getSettlement
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Settlement details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Settlement'
components:
  schemas:
    Settlement:
      type: object
      properties:
        id:
          type: string
          example: se_abc123
        merchantId:
          type: string
        amount:
          type: string
        feeTotal:
          type: string
        netAmount:
          type: string
        currency:
          $ref: '#/components/schemas/Currency'
        amountFormatted:
          type: string
        netAmountFormatted:
          type: string
        status:
          $ref: '#/components/schemas/SettlementStatus'
        periodStart:
          type: string
          format: date-time
        periodEnd:
          type: string
          format: date-time
        payoutRef:
          type: string
          nullable: true
        itemCount:
          type: integer
        createdAt:
          type: string
          format: date-time
        processedAt:
          type: string
          format: date-time
          nullable: true
        completedAt:
          type: string
          format: date-time
          nullable: true
    Currency:
      type: string
      enum:
        - CVE
        - AOA
      description: ISO currency code
    SettlementStatus:
      type: string
      enum:
        - PENDING
        - PROCESSING
        - COMPLETED
        - FAILED
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key starting with `sk_live_` or `sk_test_`

````