> ## 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.

# Get

> Get export progress, size, expiry, and metered transfer.



## OpenAPI

````yaml /openapi.json get /v1/orgs/{orgId}/projects/{projectId}/databases/{databaseId}/exports/{exportId}
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/{exportId}:
    get:
      tags:
        - databaseExports
      summary: Get
      description: Get export progress, size, expiry, and metered transfer.
      operationId: databaseExports.get
      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
        - name: exportId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Database export.
          content:
            application/json:
              schema:
                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 export for this database.
      security:
        - apiKey: []
        - session: []
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: korve_api_key
    session:
      type: apiKey
      in: cookie
      name: korve.session_token

````