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

# List subscription invoices

> Fetch a filtered list of subscription invoices associated with the store specified by `x-store-id`. Supports filtering by `status`, `subscription_id`, and `customer_id`, as well as limiting entries using `limit` parameter.



## OpenAPI

````yaml /api-reference/shopper-api.json get /subscription-invoices
openapi: 3.0.0
info:
  title: Shopper API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security:
  - bearerAuth: []
paths:
  /subscription-invoices:
    get:
      tags:
        - Shopper Subscriptions
      summary: List subscription invoices
      description: >-
        Fetch a filtered list of subscription invoices associated with the store
        specified by `x-store-id`. Supports filtering by `status`,
        `subscription_id`, and `customer_id`, as well as limiting entries using
        `limit` parameter.
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
          description: Maximum number of invoices to return.
        - name: status
          in: query
          description: Filter invoices by status.
          schema:
            type: string
        - name: subscription_id
          in: query
          description: Filter invoices by subscription ID.
          schema:
            type: string
        - name: customer_id
          in: query
          description: Filter invoices by customer ID.
          schema:
            type: string
      responses:
        '200':
          description: Invoices retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SubscriptionInvoicesList'
        '401':
          description: Unauthorized - Store ID header missing.
        '500':
          description: Internal Server Error.
      security:
        - storeIdHeader: []
components:
  schemas:
    SubscriptionInvoicesList:
      type: object
      properties:
        meta:
          type: object
          properties:
            total:
              type: integer
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              status:
                type: string
              subscription_id:
                type: string
              customer_id:
                type: string
              amount:
                type: number
              created_at:
                type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
    storeIdHeader:
      type: apiKey
      in: header
      name: x-store-id

````