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

# Usage and limits

> What the organization uses, the limits its server's operator set, and 30 days of delivery traffic. Admin on the organization.

Any caller; the scope needed is checked on what it acts on.



## OpenAPI

````yaml /openapi.json get /api/v1/usage
openapi: 3.1.0
info:
  title: artbucket
  version: '1'
  description: >-
    Agent-first asset management. The web UI is built on this API and nothing
    else, beside signing in at /api/auth. Send `Authorization: Bearer <key>`: a
    key works in one workspace with one scope, and scopes are a ladder: read <
    propose < write < admin. People signed in to the app carry a session cookie
    instead, and their scope is what their grants add up to: on the
    organization, the workspace, or single collections and assets. A scope shown
    as needed on the workspace is also enough on the one collection or asset a
    route acts on. Agents (MCP at POST /api/v1/mcp) usually get `propose`: what
    they add waits for a human.
servers:
  - url: http://localhost:3000
security:
  - bearer: []
  - session: []
  - {}
paths:
  /api/v1/usage:
    get:
      summary: Usage and limits
      description: >-
        What the organization uses, the limits its server's operator set, and 30
        days of delivery traffic. Admin on the organization.


        Any caller; the scope needed is checked on what it acts on.
      responses:
        '200':
          description: Usage
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      limits:
                        type: object
                        properties:
                          storage:
                            description: 'Bytes of assets; null: no limit'
                            type:
                              - number
                              - 'null'
                          editors:
                            description: >-
                              People with write or admin, invitations included;
                              null: no limit
                            type:
                              - number
                              - 'null'
                          workspaces:
                            description: 'Workspaces; null: no limit'
                            type:
                              - number
                              - 'null'
                          brands:
                            description: 'Brands, over all workspaces; null: no limit'
                            type:
                              - number
                              - 'null'
                          features:
                            anyOf:
                              - type: array
                                items:
                                  type: string
                                  enum:
                                    - agents
                                    - shares
                              - type: 'null'
                            description: 'What it may use; null: everything'
                          readOnly:
                            type: boolean
                        required:
                          - storage
                          - editors
                          - workspaces
                          - brands
                          - features
                          - readOnly
                        additionalProperties: false
                        description: >-
                          Set by whoever runs the server; never by the
                          organization
                      used:
                        type: object
                        properties:
                          storage:
                            type: number
                          editors:
                            type: integer
                            minimum: -9007199254740991
                            maximum: 9007199254740991
                          workspaces:
                            type: integer
                            minimum: -9007199254740991
                            maximum: 9007199254740991
                          brands:
                            type: integer
                            minimum: -9007199254740991
                            maximum: 9007199254740991
                        required:
                          - storage
                          - editors
                          - workspaces
                          - brands
                        additionalProperties: false
                      traffic:
                        type: object
                        properties:
                          days:
                            type: integer
                            minimum: -9007199254740991
                            maximum: 9007199254740991
                            description: How far back
                          workspaces:
                            type: array
                            items:
                              type: object
                              properties:
                                id:
                                  type: string
                                  format: uuid
                                  pattern: >-
                                    ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                                name:
                                  type: string
                                storage:
                                  type: number
                                requests:
                                  type: integer
                                  minimum: -9007199254740991
                                  maximum: 9007199254740991
                                bytes:
                                  type: number
                              required:
                                - id
                                - name
                                - storage
                                - requests
                                - bytes
                              additionalProperties: false
                          daily:
                            type: array
                            items:
                              type: object
                              properties:
                                day:
                                  type: string
                                requests:
                                  type: integer
                                  minimum: -9007199254740991
                                  maximum: 9007199254740991
                                bytes:
                                  type: number
                              required:
                                - day
                                - requests
                                - bytes
                              additionalProperties: false
                        required:
                          - days
                          - workspaces
                          - daily
                        additionalProperties: false
                        description: >-
                          What /a/{id} served: originals, renditions and
                          downloads
                    required:
                      - limits
                      - used
                      - traffic
                    additionalProperties: false
                required:
                  - data
                additionalProperties: false
        default:
          description: An error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      detail: {}
                    required:
                      - code
                      - message
                    additionalProperties: false
                required:
                  - error
                additionalProperties: false
components:
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      description: 'An API key: ab_...'
    session:
      type: apiKey
      in: cookie
      name: better-auth.session_token
      description: Signed in, at /api/auth

````