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

# Get apidatasets storage usage

> GET /datasets/{id}/storage-usage — sum of artifact sizes by
type for a single dataset. Auth required + dataset visibility.



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/datasets/{id}/storage-usage/
openapi: 3.0.3
info:
  title: Console API
  version: 1.0.0
  description: Central control plane API for the Dataerai platform.
servers:
  - url: https://{server}
    description: Your Dataerai deployment (the API is served under /api)
    variables:
      server:
        default: your-deployment.dataerai.com
        description: Host of your Dataerai deployment
security: []
paths:
  /api/datasets/{id}/storage-usage/:
    get:
      tags:
        - api
      description: |-
        GET /datasets/{id}/storage-usage — sum of artifact sizes by
        type for a single dataset. Auth required + dataset visibility.
      operationId: api_datasets_storage_usage_retrieve
      parameters:
        - in: path
          name: id
          schema:
            type: string
            format: uuid
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                additionalProperties: {}
          description: ''
      security:
        - cookieAuthCsrfExempt: []
components: {}

````