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

# List customer subscriptions

> Retrieves all subscriptions for a specific customer.



## OpenAPI

````yaml get /v1/subscriptions/customer/{customerId}
openapi: 3.0.0
info:
  title: Revstack API
  version: 1.0.0
  description: >-
    Open Source Billing OS for Developers. The scalable, developer-first billing
    engine with subscriptions, invoicing, usage metering, and entitlements.
servers:
  - url: http://localhost:6900
    description: Revstack API (Local Development)
security: []
paths:
  /v1/subscriptions/customer/{customerId}:
    get:
      tags:
        - Subscriptions
      summary: List customer subscriptions
      description: Retrieves all subscriptions for a specific customer.
      parameters:
        - schema:
            type: string
            example: cust_abc123
          required: true
          name: customerId
          in: path
      responses:
        '200':
          description: Customer subscriptions
          content:
            application/json:
              schema:
                type: array
                items:
                  nullable: true

````