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

# Get the user’s storage usage

> Returns the user’s total storage quota, bytes used, and remaining bytes — the reliable maximum size for the next upload.



## OpenAPI

````yaml /api-reference/phones.yaml get /apps/storage-usage
openapi: 3.1.0
info:
  title: Phones
  version: v1
servers:
  - url: https://api.mobilerun.ai
    description: Droidrun Cloud API
security:
  - bearerAuth: []
paths:
  /apps/storage-usage:
    get:
      tags:
        - Apps Cloud Storage
      summary: Get the user’s storage usage
      description: >-
        Returns the user’s total storage quota, bytes used, and remaining bytes
        — the reliable maximum size for the next upload.
      operationId: getStorageUsage
      responses:
        '200':
          description: Storage usage retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/StorageUsage'
                required:
                  - data
        '401':
          description: Unauthorized
        '500':
          description: Internal Server Error
components:
  schemas:
    StorageUsage:
      type: object
      properties:
        quotaBytes:
          type: number
          description: Total storage allowance for the user, in bytes
        usedBytes:
          type: number
          description: Bytes currently consumed across all of the user’s app versions
        availableBytes:
          type: number
          description: >-
            Remaining bytes — the reliable maximum size for the next upload.
            Advisory snapshot: the quota is enforced under a lock at confirm, so
            concurrent uploads may reduce actual headroom.
      required:
        - quotaBytes
        - usedBytes
        - availableBytes
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Opaque
      description: Bearer token via Authorization header

````