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

# Export runs

> The runs of the continuous export and of on-demand exports.



## OpenAPI

````yaml openapi/en/cell.json GET /v1/exports/runs
openapi: 3.1.0
info:
  title: Niadra data API
  version: '1'
  description: >-
    Writing, context, history, objects, identity, privacy and governance of one
    space. Every space has a stable address, with the space and the region in
    its name.
servers:
  - url: https://{space}.{region}.api.niadra.com
    variables:
      space:
        default: acme-prod
        description: The space, which comes in the source key.
      region:
        default: us-east-1
        description: The region of the space, which also comes in the key.
security: []
paths:
  /v1/exports/runs:
    get:
      tags:
        - governance
      summary: Export runs
      description: >-
        Lists the runs of the continuous export to your bucket, newest first:
        the change sequence range each run covered, its status and the manifest
        it wrote. Filter by `schedule_id` to follow one destination.


        **Authentication.** Console person token with the `security` role (or
        admin), or a source key with the `admin` scope.
      operationId: export_runs_v1_exports_runs_get
      parameters:
        - in: query
          name: schedule_id
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Schedule Id
          description: Only the runs of this export schedule.
        - in: query
          name: cursor
          required: false
          schema:
            anyOf:
              - format: uuid
                type: string
              - type: 'null'
            title: Cursor
        - in: query
          name: limit
          required: false
          schema:
            default: 50
            maximum: 200
            minimum: 1
            title: Limit
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Page_ExportRunOut_'
              example:
                items:
                  - run_id: 0192f6e0-2b10-7c4d-8e5f-6a7b8c9d0e1f
                    schedule_id: datalake-hourly
                    status: completed
                    started_at: '2026-09-22T17:00:00Z'
                    finished_at: '2026-09-22T17:03:41Z'
                    from_seq: 1882210
                    to_seq: 1893754
                    manifest:
                      schema_version: 3
                      files: 11
                      rows: 11544
                    error: null
                next_cursor: null
          description: One page of export runs.
        '422':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
          description: The request does not match the contract.
      security:
        - sourceKey: []
        - personToken: []
components:
  schemas:
    Page_ExportRunOut_:
      additionalProperties: false
      properties:
        items:
          items:
            $ref: '#/components/schemas/ExportRunOut'
          title: Items
          type: array
        next_cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Cursor
      required:
        - items
      title: Page[ExportRunOut]
      type: object
    Problem:
      additionalProperties: false
      description: RFC 9457 problem details; `code` comes from the versioned error catalog.
      properties:
        code:
          title: Code
          type: string
        detail:
          anyOf:
            - type: string
            - type: 'null'
          default: null
          title: Detail
        request_id:
          anyOf:
            - type: string
            - type: 'null'
          default: null
          title: Request Id
        status:
          title: Status
          type: integer
        title:
          title: Title
          type: string
        type:
          default: about:blank
          title: Type
          type: string
      required:
        - title
        - status
        - code
      title: Problem
      type: object
    ExportRunOut:
      additionalProperties: false
      properties:
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
        finished_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Finished At
        from_seq:
          title: From Seq
          type: integer
        manifest:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Manifest
        run_id:
          title: Run Id
          type: string
        schedule_id:
          title: Schedule Id
          type: string
        started_at:
          format: date-time
          title: Started At
          type: string
        status:
          enum:
            - waiting
            - running
            - completed
            - failed
          title: Status
          type: string
        to_seq:
          title: To Seq
          type: integer
      required:
        - run_id
        - schedule_id
        - status
        - from_seq
        - to_seq
        - started_at
      title: ExportRunOut
      type: object
  securitySchemes:
    sourceKey:
      type: http
      scheme: bearer
      description: nia_sk_...
    personToken:
      type: http
      scheme: bearer
      bearerFormat: JWT

````