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

# List the active hybrid-tier catalog

> Returns every active row in `organizationTierCatalog`. The list is static per environment once the bootstrap has run — call this once at webapp boot and cache for the session. Public endpoint — no authentication required.



## OpenAPI

````yaml /api-reference/organizations-openapi.json get /organizations/billing/catalog
openapi: 3.0.0
info:
  title: Nevermined Organizations API
  description: >-
    Manage a Nevermined organization programmatically — members, tiers, groups &
    budgets, treasury wallets, customers, webhooks, analytics, and
    agent-discovery surfaces.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.sandbox.nevermined.app/api/v1
    description: Sandbox
  - url: https://api.live.nevermined.app/api/v1
    description: Live
security: []
tags:
  - name: Organizations
    x-group: General
    description: Organization settings, members & roles, and workspace context.
  - name: Organizations - Billing
    x-group: Billing
    description: Tiers, subscriptions, invoices, checkout, and the public tier catalog.
  - name: Groups
    x-group: Groups & Budgets
    description: Organization groups, per-group budgets, and shared payment methods.
  - name: Organizations - Wallets
    x-group: Wallets
    description: Custodial stablecoin treasury wallets.
  - name: Organizations - Customers
    x-group: Customers
    description: The white-label customer CRM (Enterprise).
  - name: Organizations - Analytics
    x-group: Analytics
    description: Revenue, MRR, usage, conversion, and per-member metrics.
  - name: Organizations - Webhooks
    x-group: Webhooks
    description: Outbound webhook subscriptions and deliveries.
  - name: Organizations - Activity
    x-group: Activity
    description: The organization activity feed.
  - name: Organizations - Realtime
    x-group: Realtime
    description: Realtime WebSocket secret management (Enterprise).
  - name: Invitations
    x-group: Invitations
    description: Invite people to an organization.
  - name: Organizations - Integration
    x-group: Agent Discovery
    description: >-
      Public agent-discovery surfaces (llms.txt, agentic-instructions.md,
      ai-catalog.json).
paths:
  /organizations/billing/catalog:
    get:
      tags:
        - Organizations - Billing
      summary: List the active hybrid-tier catalog
      description: >-
        Returns every active row in `organizationTierCatalog`. The list is
        static per environment once the bootstrap has run — call this once at
        webapp boot and cache for the session. Public endpoint — no
        authentication required.
      operationId: TierCatalogController_list
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TierCatalogResponseDto'
components:
  schemas:
    TierCatalogResponseDto:
      type: object
      properties:
        catalog:
          type: array
          items:
            $ref: '#/components/schemas/TierCatalogRowDto'
      required:
        - catalog
    TierCatalogRowDto:
      type: object
      properties:
        tier:
          type: string
          enum:
            - Premium
            - Enterprise
            - Lapsed
            - Other
          example: Premium
        currency:
          type: string
          enum:
            - USD
            - EUR
            - USDC
            - EURC
          example: USD
        interval:
          type: string
          enum:
            - month
            - year
            - one_shot
          example: month
        source:
          type: string
          enum:
            - stripe_subscription
            - crypto_one_shot
          example: stripe_subscription
        creditsPerCycle:
          type: string
          example: '1000000'
        durationSecs:
          type: string
          example: '2592000'
        priceMinorUnits:
          type: number
          example: 25000
        stripeLookupKey:
          type: string
          example: nvm_premium_usd_month
          nullable: true
        neverminedPlanId:
          type: string
          example: >-
            94985929696461581796777410069372531525722254393298455964755634838270184706412
      required:
        - tier
        - currency
        - interval
        - source
        - creditsPerCycle
        - durationSecs
        - priceMinorUnits
        - stripeLookupKey
        - neverminedPlanId

````

## Related topics

- [Public ARD ai-catalog.json for an organization](/docs/api-reference/organizations--integration/public-ard-ai-catalogjson-for-an-organization.md)
- [API error codes](/docs/development-guide/api-errors/codes.md)
- [Upgrade a Premium org to Enterprise without resubscribing](/docs/api-reference/organizations--billing/upgrade-a-premium-org-to-enterprise-without-resubscribing.md)
- [List Stripe invoices for the org tier subscription](/docs/api-reference/organizations--billing/list-stripe-invoices-for-the-org-tier-subscription.md)
- [Downgrade an Enterprise org to Premium without resubscribing](/docs/api-reference/organizations--billing/downgrade-an-enterprise-org-to-premium-without-resubscribing.md)
