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

# Get Resource Usage

> Returns your current resource usage across all servers, including CPU, RAM, disk, and IP counts against your limits.



## OpenAPI

````yaml GET /account/usage
openapi: 3.0.3
info:
  title: CloudBlast API
  description: >-
    The CloudBlast V2 API provides a modern RESTful interface for managing your
    cloud infrastructure programmatically. All responses follow a consistent `{
    "data": ... }` or `{ "error": ... }` format.
  version: 2.0.0
servers:
  - url: https://console.cloudblast.io/api/v2
    description: Production
security:
  - bearerAuth: []
paths:
  /account/usage:
    get:
      tags:
        - Account
      summary: Get resource usage
      description: >-
        Returns your current resource usage across all servers, including CPU,
        RAM, disk, and IP counts against your limits.
      operationId: getAccountUsage
      responses:
        '200':
          description: Resource usage
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/AccountUsage'
        '401':
          $ref: '#/components/responses/Unauthenticated'
components:
  schemas:
    AccountUsage:
      type: object
      properties:
        servers:
          type: integer
          description: Number of active servers
          example: 3
        cpu_used:
          type: integer
          description: Total CPU cores allocated
          example: 8
        cpu_limit:
          type: integer
          description: CPU core limit
          example: 32
        ram_used:
          type: integer
          description: Total RAM allocated in bytes
          example: 8589934592
        ram_limit_gb:
          type: number
          description: RAM limit in GB
          example: 64
        disk_used:
          type: integer
          description: Total disk allocated in bytes
          example: 107374182400
        ip_used:
          type: integer
          description: Total IP addresses in use
          example: 6
        ip_limit:
          type: integer
          description: Extra IP address limit
          example: 10
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              description: Machine-readable error code
            message:
              type: string
              description: Human-readable error message
          required:
            - code
            - message
  responses:
    Unauthenticated:
      description: Authentication failed
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error:
              code: UNAUTHENTICATED
              message: >-
                Missing or invalid Authorization header. Use: Authorization:
                Bearer <token>
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API token from your CloudBlast account settings. Pass as `Authorization:
        Bearer <token>`.

````