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

# List Settlement Batches

Retrieve all settlement batches belonging to the authenticated integrator, ordered by creation date descending.


## OpenAPI

````yaml GET /api/v3/integrator/settlements/batch
openapi: 3.0.0
info:
  title: KOTANI PAY API PLATFORM
  description: ''
  version: '3.0'
  contact: {}
servers:
  - url: https://sandbox-api.kotanipay.io
    description: Sandbox
security: []
tags: []
paths:
  /api/v3/integrator/settlements/batch:
    get:
      tags:
        - INTEGRATOR
      operationId: IntegratorSettlementsController_listBatches_api/v3
      parameters:
        - name: status
          required: true
          in: query
          schema:
            type: string
        - name: limit
          required: true
          in: query
          schema:
            type: string
        - name: offset
          required: true
          in: query
          schema:
            type: string
      responses:
        '200':
          description: ''
      security:
        - JWT: []
components:
  securitySchemes:
    JWT:
      scheme: bearer
      bearerFormat: JWT
      type: http

````