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

# Get current subscription

> Retrieves the current active subscription for the authenticated user



## OpenAPI

````yaml specs/billing_api_docs.json get /api/v1/subscriptions/current
openapi: 3.0.1
info:
  title: Billing API
  description: Billing service for managing subscriptions, payments, and entitlements
  contact: {}
  version: '1.0'
servers:
  - url: https://dev-billing-api.iqraa.ai/api/v1
security: []
tags:
  - name: Customers
    description: Customers related endpoints
  - name: Subscriptions
    description: Subscription related endpoints
  - name: Plans
    description: Plans related endpoints
  - name: Entitlements
    description: Entitlements related endpoints
  - name: Payments
    description: Payments related endpoints
  - name: Emails
    description: Email related endpoints
paths:
  /api/v1/subscriptions/current:
    get:
      tags:
        - Subscriptions
      summary: Get current subscription
      description: Retrieves the current active subscription for the authenticated user
      operationId: SubscriptionController_getCurrentSubscription
      parameters: []
      responses:
        '200':
          description: Current subscription retrieved successfully
        '403':
          description: >-
            Forbidden - User not authorized or organization user without admin
            rights
        '404':
          description: No active subscription found
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: opaque
      type: http

````