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

# Lists actual Stripe invoices for the current business.

> Returns the current business's Stripe invoices with their amounts, payment status, billing period, and hosted invoice details.



## OpenAPI

````yaml /openapi.json get /payment-methods/invoices
openapi: 3.0.4
info:
  title: Leadping API
  description: >-
    Leadping API for lead intake, messaging, calling, automations, billing,
    business settings, and compliant lead communication workflows.
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
  version: v1
servers:
  - url: https://api.leadping.ai
    description: Production
security: []
tags:
  - name: Analytics
  - name: Automations
  - name: Contact
  - name: Conversations
  - name: Dispositions
  - name: Feedback
  - name: Leads
  - name: LeadStatuses
  - name: Notifications
  - name: OutboundDelivery
  - name: Sources
  - name: Suppressions
  - name: Tags
  - name: Users
  - name: Calls
  - name: PhoneNumbers
  - name: Sms
  - name: Telephony
  - name: UserDataExports
  - name: CallEvents
  - name: Events
  - name: SmsEvents
  - name: Businesses
  - name: PaymentMethods
  - name: Transactions
  - name: Usage
  - name: Wallets
paths:
  /payment-methods/invoices:
    get:
      tags:
        - PaymentMethods
      summary: Lists actual Stripe invoices for the current business.
      description: >-
        Returns the current business's Stripe invoices with their amounts,
        payment status, billing period, and hosted invoice details.
      operationId: PaymentMethods_GetInvoices
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  allOf:
                    - $ref: '#/components/schemas/StripeInvoiceResponse'
                  description: Customer-safe Leadping invoice summary for billing.
components:
  schemas:
    StripeInvoiceResponse:
      type: object
      properties:
        id:
          type: string
        number:
          type: string
          nullable: true
        createdAt:
          type: string
          format: date-time
        amount:
          pattern: ^-?(?:0|[1-9]\d*)(?:\.\d+)?$
          format: double
        status:
          type: string
        hasPdf:
          type: boolean
      description: Customer-safe Leadping invoice summary for billing.

````