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

# List payment intents for the provider

> Retrieves a paginated list of all payment intents created by the authenticated provider. Supports pagination through limit and offset query parameters.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/sdk/payment-intents
openapi: 3.0.0
info:
  contact: {}
  description: The SolvaPay REST API specification
  title: SolvaPay REST API
  version: '1.0'
servers: []
security: []
tags: []
paths:
  /v1/sdk/payment-intents:
    get:
      tags:
        - Payment Intents
      summary: List payment intents for the provider
      description: >-
        Retrieves a paginated list of all payment intents created by the
        authenticated provider. Supports pagination through limit and offset
        query parameters.
      operationId: PaymentIntentSdkController_getPaymentIntents
      parameters:
        - description: Maximum number of results
          in: query
          name: limit
          required: false
          schema:
            example: 50
            type: number
        - description: Pagination offset
          in: query
          name: offset
          required: false
          schema:
            example: 0
            type: number
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SdkPaymentIntentListResponse'
          description: Payment intents retrieved successfully
      security:
        - SecretKey: []
components:
  schemas:
    SdkPaymentIntentListResponse:
      properties:
        paymentIntents:
          items:
            $ref: '#/components/schemas/SdkPaymentIntentListItem'
          type: array
        total:
          description: Number of payment intents returned
          example: 1
          type: number
      required:
        - paymentIntents
        - total
      type: object
    SdkPaymentIntentListItem:
      properties:
        amount:
          description: Amount in the charge currency (minor units)
          example: 4999
          type: number
        clientSecret:
          description: Client secret used to confirm the payment on the client
          example: pi_1a2b3c4d5e6f7g8h_secret_xxx
          type: string
        createdAt:
          description: Creation timestamp
          example: '2025-10-11T10:30:00.000Z'
          type: string
        currency:
          description: ISO 4217 currency code
          example: usd
          type: string
        planRef:
          description: Plan reference
          example: pln_2b3c4d5e6f7g
          type: string
        processorPaymentId:
          description: Payment processor payment intent ID
          example: pi_1a2b3c4d5e6f7g8h
          type: string
        status:
          description: Payment intent status
          example: succeeded
          type: string
      required:
        - processorPaymentId
        - amount
        - currency
        - status
      type: object
  securitySchemes:
    SecretKey:
      bearerFormat: JWT
      description: >-
        Provider secret API key (sk_live_… / sk_test_…) supplied as a Bearer
        token.
      scheme: bearer
      type: http

````