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

# Get v2orgssubscriptions

> Get a specific subscription (SuperAdmin only)



## OpenAPI

````yaml /api-reference/swagger.yml get /v2/orgs/subscriptions/{subscriptionSlug}
openapi: 3.0.0
info:
  version: 1.0.0
  title: Prisme.ai APIs
  description: Prisme.ai APIs specifications
  termsOfService: https://www.prisme.ai/mentions-legales
  contact:
    name: Prisme.ai Support Team
    email: support@prisme.ai
    url: https://www.prisme.ai
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
  - url: https://api.eda.prisme.ai
  - url: http://localhost:3001
security:
  - BearerAuth: []
  - WorkspaceApiKeyAuth: []
  - BearerAuth: []
    WorkspaceApiKeyAuth: []
paths:
  /v2/orgs/subscriptions/{subscriptionSlug}:
    get:
      tags:
        - Subscriptions
      description: Get a specific subscription (SuperAdmin only)
      operationId: getOrgSubscription
      parameters:
        - name: subscriptionSlug
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrgSubscription'
        '401':
          description: AuthenticationError
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationError'
        '404':
          description: Not Found
components:
  schemas:
    OrgSubscription:
      type: object
      required:
        - slug
        - name
        - tier
        - status
      properties:
        id:
          type: string
        slug:
          type: string
        name:
          type: string
        tier:
          type: string
        plan:
          type: string
        status:
          type: string
          enum:
            - active
            - inactive
            - trialing
            - past_due
            - canceled
        isDefault:
          type: boolean
        limits:
          type: object
          additionalProperties: true
        features:
          type: object
          additionalProperties: true
        billing:
          type: object
          additionalProperties: true
        startedAt:
          type: string
        expiresAt:
          type: string
        createdBy:
          type: string
        updatedBy:
          type: string
        createdAt:
          type: string
        updatedAt:
          type: string
    AuthenticationError:
      type: object
      properties:
        error:
          type: string
          example: AuthenticationError
        message:
          type: string
          example: Unauthenticated
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    WorkspaceApiKeyAuth:
      type: apiKey
      in: header
      name: x-prismeai-api-key

````