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

# List payments

> Get payment records



## OpenAPI

````yaml /payments-api-reference/openapi.json get /payments
openapi: 3.0.1
info:
  title: OpenAPI For Motor Insurance
  description: API's that you need to use to issue insurance policies to your clients
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://sandbox.yasmina.ai/api/v1/car
  - url: https://production.yasmina.ai/api/v1/car
security:
  - bearerAuth: []
paths:
  /payments:
    get:
      tags:
        - Payments
      summary: List payments
      description: Get payment records
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  payment:
                    type: integer
                    example: 1500
                example:
                  payment: 1500
          description: Success
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````