> ## 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.

# Get a specific payment intent

> Retrieves detailed information about a specific payment intent including amount, currency, and client secret.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/sdk/payment-intents/{reference}
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/{reference}:
    get:
      tags:
        - Payment Intents
      summary: Get a specific payment intent
      description: >-
        Retrieves detailed information about a specific payment intent including
        amount, currency, and client secret.
      operationId: PaymentIntentSdkController_getPaymentIntent
      parameters:
        - description: Payment intent reference or processor payment ID
          in: path
          name: reference
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                example:
                  amount: 4999
                  clientSecret: pi_1a2b3c4d5e6f7g8h_secret_xxx
                  currency: usd
                  planRef: pln_2b3c4d5e6f7g
          description: Payment intent retrieved successfully
        '404':
          content:
            application/json:
              schema:
                example:
                  code: PAYMENT_INTENT_NOT_FOUND
                  error: Payment intent not found
                  success: false
          description: Payment intent not found
      security:
        - SecretKey: []
components: {}

````