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

# List

> List all of the organization's buckets — project-scoped ones (each annotated with its project's slug) and organization-level shared ones (project null). Every project starts with a default bucket named after its slug.



## OpenAPI

````yaml /openapi.json get /v1/orgs/{orgId}/buckets
openapi: 3.1.0
info:
  title: Korve API
  version: 0.1.0
  description: >-
    Typed control plane for deploying applications and explicitly provisioning
    their managed infrastructure.
servers:
  - url: https://api.korve.dev
security: []
paths:
  /v1/orgs/{orgId}/buckets:
    get:
      tags:
        - buckets
      summary: List
      description: >-
        List all of the organization's buckets — project-scoped ones (each
        annotated with its project's slug) and organization-level shared ones
        (project null). Every project starts with a default bucket named after
        its slug.
      operationId: buckets.list
      parameters:
        - name: orgId
          in: path
          required: true
          schema:
            type: string
          description: The organization's id (UUID) or slug — either form is accepted.
      responses:
        '200':
          description: Buckets, ascending by name.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                    name:
                      type: string
                      pattern: ^[a-z][a-z0-9-]{1,61}$
                      description: Bucket name — unique within the organization.
                    region:
                      type: string
                      description: >-
                        The bucket's storage area id (see regions.list). Set at
                        creation.
                    project:
                      type:
                        - string
                        - 'null'
                      description: >-
                        Slug of the project the bucket is scoped to; null for an
                        organization-level shared bucket usable from every
                        project.
                    objectCount:
                      type: integer
                      description: >-
                        Number of objects in the bucket. Refreshed hourly —
                        recent uploads and deletes may not be reflected yet. 0
                        until the first refresh.
                    totalBytes:
                      type: integer
                      description: >-
                        Total size of the bucket's objects in bytes. Refreshed
                        hourly, like objectCount.
                    statsUpdatedAt:
                      type:
                        - string
                        - 'null'
                      format: date-time
                      description: >-
                        When objectCount and totalBytes were last refreshed
                        (hourly cadence); null until the first refresh.
                    createdAt:
                      type: string
                      format: date-time
                  required:
                    - id
                    - name
                    - region
                    - project
                    - objectCount
                    - totalBytes
                    - statsUpdatedAt
                    - createdAt
      security:
        - apiKey: []
        - session: []
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: korve_api_key
    session:
      type: apiKey
      in: cookie
      name: korve.session_token

````