> ## Documentation Index
> Fetch the complete documentation index at: https://razorpay-60c89f9a-mintlify-audit-missing-sections-1778528421.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List all invoices

> Returns a list of all invoices created.



## OpenAPI

````yaml /openapi/products.json get /invoices
openapi: 3.1.0
info:
  title: Razorpay Products API
  description: >-
    API specification for Razorpay Payment Links, Subscriptions, and QR Codes
    products.
  version: 1.0.0
  contact:
    name: Razorpay Support
    url: https://razorpay.com/support
servers:
  - url: https://api.razorpay.com/v1
    description: Razorpay Production API
security:
  - basicAuth: []
tags:
  - name: Payment Links
    description: >-
      Create and manage payment links to collect payments from customers without
      building a checkout flow.
  - name: Plans
    description: >-
      Create and manage plans that define the billing period and amount for
      subscriptions.
  - name: Subscriptions
    description: >-
      Create and manage recurring subscriptions for customers based on defined
      plans.
  - name: QR Codes
    description: Create and manage QR codes for accepting UPI payments in-store or online.
  - name: Invoices
    description: Create and manage invoices to bill customers for products and services.
paths:
  /invoices:
    get:
      tags:
        - Invoices
      summary: List all invoices
      description: Returns a list of all invoices created.
      operationId: listInvoices
      parameters:
        - name: count
          in: query
          description: Number of invoices to return.
          schema:
            type: integer
            default: 10
        - name: skip
          in: query
          description: Number of invoices to skip for pagination.
          schema:
            type: integer
            default: 0
      responses:
        '200':
          description: List of invoices retrieved successfully.
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: Use your Razorpay Key ID as the username and Key Secret as the password.

````