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

# List payments

> Retrieve a paginated list of payments with optional filtering by status.



## OpenAPI

````yaml /openapi/v0/openapi.json get /v0/payments
openapi: 3.0.0
info:
  title: Superbank API
  description: Superbank Developer API for Instant Settlement
  version: '1.0'
  contact: {}
servers:
  - url: https://api-sandbox.superbank.co
    description: Sandbox
security: []
tags: []
paths:
  /v0/payments:
    get:
      tags:
        - Payments
      summary: List payments
      description: Retrieve a paginated list of payments with optional filtering by status.
      operationId: PaymentsController_listPayments
      parameters:
        - name: status
          required: false
          in: query
          description: Filter by payment status
          schema:
            example: COMPLETED
            type: string
            enum:
              - AWAITING_FUNDS
              - PENDING
              - PROCESSING
              - SENT
              - COMPLETED
              - CANCELED
              - FAILED
              - EXPIRED
              - REFUNDED
              - SCHEDULED
              - UNDER_REVIEW
        - name: page
          required: false
          in: query
          description: Page number for pagination
          schema:
            minimum: 1
            default: 1
            type: number
        - name: limit
          required: false
          in: query
          description: Number of items per page
          schema:
            minimum: 1
            maximum: 100
            default: 20
            type: number
      responses:
        '200':
          description: Payments retrieved successfully
        '401':
          description: Unauthorized - invalid or missing API key
      security:
        - api-key: []
components:
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: X-Api-Key

````