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

# Get Subscription



## OpenAPI

````yaml GET /v1/billing/subscription
openapi: 3.0.0
info:
  title: Wardin API
  description: AI governance & observability platform — external REST API
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/billing/subscription:
    get:
      tags:
        - billing
      summary: Current plan + usage-vs-limit for the tenant
      operationId: BillingController_subscription
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UsageResponseDto'
      security:
        - bearer: []
components:
  schemas:
    UsageResponseDto:
      type: object
      properties:
        plan:
          type: string
        used:
          type: number
        included:
          type: number
        hardCap:
          type: number
        overageEnabled:
          type: boolean
        overage:
          type: number
        blocked:
          type: boolean
        status:
          type: string
      required:
        - plan
        - used
        - included
        - hardCap
        - overageEnabled
        - overage
        - blocked
        - status
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````