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

# Get export status

> Returns the current status of an export. When completed, includes a temporary download URL valid for 24 hours.



## OpenAPI

````yaml GET /exports/{export_id}
openapi: 3.1.0
info:
  title: Mangrove - API
  version: 1.1.0
servers:
  - url: https://app.gomangrove.com/api/v1
security:
  - sec0: []
paths:
  /exports/{export_id}:
    get:
      tags:
        - Exports
      summary: Get export status
      description: >-
        Returns the current status of an export. When completed, includes a
        temporary download URL valid for 24 hours.
      operationId: get-export
      parameters:
        - name: export_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Export status
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  status:
                    type: string
                    enum:
                      - pending
                      - processing
                      - completed
                      - failed
                  download_url:
                    type: string
                    format: uri
                    description: Temporary download URL (only when completed, valid 24h)
                  file_size_bytes:
                    type: integer
                  format:
                    type: string
                  created_at:
                    type: string
                    format: date-time
                  completed_at:
                    type: string
                    format: date-time
                  error:
                    type: string
                    description: Generic error message (only when failed)
        '404':
          description: Export not found or belongs to another account
      security:
        - sec0: []
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: Authorization
      x-bearer-format: ''

````