> ## 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 database exports, newest first.



## OpenAPI

````yaml /openapi.json get /v1/orgs/{orgId}/projects/{projectId}/databases/{databaseId}/exports
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}/projects/{projectId}/databases/{databaseId}/exports:
    get:
      tags:
        - databaseExports
      summary: List
      description: List database exports, newest first.
      operationId: databaseExports.list
      parameters:
        - name: orgId
          in: path
          required: true
          schema:
            type: string
          description: The organization's id (UUID) or slug — either form is accepted.
        - name: projectId
          in: path
          required: true
          schema:
            type: string
          description: The project's id (UUID) or slug — either form is accepted.
        - name: databaseId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Database exports.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                    databaseId:
                      type: string
                    format:
                      type: string
                      enum:
                        - logical_sql
                        - logical_archive
                        - physical_archive
                    status:
                      type: string
                      enum:
                        - queued
                        - running
                        - ready
                        - failed
                        - expired
                    destinationId:
                      type:
                        - string
                        - 'null'
                    destinationVersion:
                      type:
                        - integer
                        - 'null'
                      description: >-
                        Exact immutable destination configuration used by this
                        export.
                    sizeBytes:
                      type:
                        - integer
                        - 'null'
                    transferBytes:
                      type:
                        - integer
                        - 'null'
                      description: >-
                        Bytes transferred to a customer destination and billed
                        as metered egress.
                    expiresAt:
                      type:
                        - string
                        - 'null'
                      format: date-time
                    error:
                      type:
                        - string
                        - 'null'
                    createdAt:
                      type: string
                      format: date-time
                  required:
                    - id
                    - databaseId
                    - format
                    - status
                    - destinationId
                    - destinationVersion
                    - sizeBytes
                    - transferBytes
                    - expiresAt
                    - error
                    - createdAt
        '404':
          description: No such database in this project.
      security:
        - apiKey: []
        - session: []
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: korve_api_key
    session:
      type: apiKey
      in: cookie
      name: korve.session_token

````