> ## 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.

# Read a budget's usage for the current period



## OpenAPI

````yaml /api-reference/organizations-openapi.json get /organizations/{orgId}/groups/{groupId}/budgets/{budgetId}/usage
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/{orgId}/groups/{groupId}/budgets/{budgetId}/usage:
    get:
      tags:
        - Groups
      summary: Read a budget's usage for the current period
      operationId: GroupBudgetsController_getUsage
      parameters:
        - name: orgId
          required: true
          in: path
          schema:
            type: string
            example: org-abc123
        - name: groupId
          required: true
          in: path
          schema:
            type: string
            example: grp-abc123
        - name: budgetId
          required: true
          in: path
          schema:
            example: bdg-abc123
            type: string
      responses:
        '200':
          description: 'Envelope `{ success, usage: GroupBudgetUsageDto }`'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GroupBudgetUsageResponseDto'
        '404':
          description: Budget not found
      security:
        - Authorization: []
components:
  schemas:
    GroupBudgetUsageResponseDto:
      type: object
      properties:
        success:
          type: boolean
          example: true
        usage:
          $ref: '#/components/schemas/GroupBudgetUsageDto'
      required:
        - success
        - usage
    GroupBudgetUsageDto:
      type: object
      properties:
        budgetId:
          type: string
          example: bdg-3fa8…afa6
        currency:
          type: string
          example: usd
        spendingLimitCents:
          type: string
          example: '150000'
        amountSpentCents:
          type: string
          example: '120000'
        remainingBudgetCents:
          type: string
          example: '30000'
        percentUsed:
          type: number
          description: amountSpent / spendingLimit, 0–100
          example: 80
        periodStart:
          format: date-time
          type: string
        periodEnd:
          format: date-time
          type: string
        alertThresholdPct:
          type: number
          example: 80
        status:
          type: string
          example: Active
          enum:
            - Active
            - Exhausted
      required:
        - budgetId
        - currency
        - spendingLimitCents
        - amountSpentCents
        - remainingBudgetCents
        - percentUsed
        - periodStart
        - periodEnd
        - alertThresholdPct
        - status
  securitySchemes:
    Authorization:
      scheme: bearer
      bearerFormat: JWT
      type: http

````

## Related topics

- [Read one budget by id](/docs/api-reference/groups/read-one-budget-by-id.md)
- [Groups & Budgets](/docs/solutions/organizations/groups-and-budgets.md)
- [Cancel the org tier subscription at period end](/docs/api-reference/organizations--billing/cancel-the-org-tier-subscription-at-period-end.md)
- [Current tier subscription for this org (or null)](/docs/api-reference/organizations--billing/current-tier-subscription-for-this-org-or-null.md)
- [Plans & Billing](/docs/solutions/organizations/plans-and-billing.md)
