---
title: "Get Bulk Export Runs Filtered"
method: GET
path: "/api/v1/bulk-exports/runs"
tags: ["bulk-exports"]
---

# Get Bulk Export Runs Filtered

`GET /api/v1/bulk-exports/runs`

Get all bulk export runs for exports that were created from a scheduled bulk export

## Query parameters

- `source_bulk_export_id` string, uuid, required

## Response `200`

Successful Response

- BulkExportRun[]
  - `bulk_export_id` string, uuid, required
  - `metadata` BulkExportRunMetadata, required
    - `prefix` string, required
    - `start_time` string, date-time, required
    - `end_time` string, date-time, required
    - `execution_backend` 'clickhouse' | 'smithdb', nullable
    - `result` BulkExportRunProgress
      - `rows_written` integer, required
      - `exported_files` string[], required
      - `export_path` string, required
      - `latest_cursor` string, nullable, required
      - `pending_upload` PendingUpload — Tracks a file upload that is in progress or needs to be verified. This allows us to handle cases where: 1. File upload succeeds but progress update fails 2. Job crashes during upload 3. Need to verify uploaded files before advancing cursor
        - `target_cursor` string, nullable, required
        - `file_path` string, required
        - `rows_count` integer, required
  - `session_id` string, uuid, nullable
  - `id` string, uuid, required
  - `status` 'Cancelled' | 'Completed' | 'Created' | 'Failed' | 'TimedOut' | 'Running', required
  - `retry_number` integer
  - `errors` object, nullable
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required
  - `finished_at` string, date-time, nullable, required
  - `start_time` string, date-time, nullable
  - `end_time` string, date-time, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/langchain-ai/apis/langsmith.md) · [All operations](https://skmtc.net/langchain-ai/apis/langsmith/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/langchain-ai/langsmith/revisions/a0acb3a6a101/schema)
