> ## Documentation Index
> Fetch the complete documentation index at: https://openmetadata-fix-release-notes.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Bulk Export Test Cases

> Learn to bulk export data quality test cases in OpenMetadata as CSV files, at the table, test suite, or platform-wide scope.

# Bulk Export Test Cases

Exporting test cases to a CSV file gives you a copy of your test case metadata to review offline, or a template you can edit and re-import. You can export test cases for a single table, for a test suite, or across your entire platform.

For more information about what each column in the file means, see the [CSV Field Reference](/v1.13.x/how-to-guides/data-quality-observability/quality/import-export-test-cases).

## Bulk Export Test Cases for a Table

To export test cases scoped to a single table:

1. In the left navigation menu, click **Explore**, and select the table whose test cases you want to export.
2. Navigate to the **Data Observability** tab.
3. In the **Data Quality** tab, click **Test Cases** if not selected.
   <img src="https://mintcdn.com/openmetadata-fix-release-notes/jK97OZGF8lmQkA1K/public/images/how-to-guides/data-quality-observability/quality/table-test-cases.png?fit=max&auto=format&n=jK97OZGF8lmQkA1K&q=85&s=05f8acd0816e23e6ed6176c71004a1de" alt="Access Table Test Cases" width="2528" height="1390" data-path="public/images/how-to-guides/data-quality-observability/quality/table-test-cases.png" />
4. Click the **⋮** icon and click **Export**.
   <img src="https://mintcdn.com/openmetadata-fix-release-notes/jK97OZGF8lmQkA1K/public/images/how-to-guides/data-quality-observability/quality/select-export-table.png?fit=max&auto=format&n=jK97OZGF8lmQkA1K&q=85&s=1e859428ac6740793d74de272535b755" alt="Export test cases for a single table" width="2448" height="646" data-path="public/images/how-to-guides/data-quality-observability/quality/select-export-table.png" />
5. In the export dialog, confirm the CSV format and start the export.
   <img src="https://mintcdn.com/openmetadata-fix-release-notes/jK97OZGF8lmQkA1K/public/images/how-to-guides/data-quality-observability/quality/confirm-export.png?fit=max&auto=format&n=jK97OZGF8lmQkA1K&q=85&s=afbc7e9c67965e6ee69d9856c6806b26" alt="Confirm and start the export" width="1072" height="658" data-path="public/images/how-to-guides/data-quality-observability/quality/confirm-export.png" />
6. OpenMetadata generates the file in the background and downloads it once it's ready.

## Bulk Export Test Cases in a Suite

To export test cases scoped to a single test suite:

1. Navigate to **Data Observability** > **Data Quality**.
2. Click the **Test Suites** tab and switch to **Bundle Suites**.
   <img src="https://mintcdn.com/openmetadata-fix-release-notes/jK97OZGF8lmQkA1K/public/images/how-to-guides/data-quality-observability/quality/test-suites-test-case.png?fit=max&auto=format&n=jK97OZGF8lmQkA1K&q=85&s=a6d833b0df1ae3dae4b46135bd3cd332" alt="Select a bundle test suite" width="2996" height="1258" data-path="public/images/how-to-guides/data-quality-observability/quality/test-suites-test-case.png" />
3. Search and select the bundle suite whose test cases you want to export.
4. Click the **⋮** icon and click **Export**.
   <img src="https://mintcdn.com/openmetadata-fix-release-notes/jK97OZGF8lmQkA1K/public/images/how-to-guides/data-quality-observability/quality/select-export-suite.png?fit=max&auto=format&n=jK97OZGF8lmQkA1K&q=85&s=7e25e0d4e6fb63e440907314ce6b065e" alt="Export test cases for a test suite" width="2486" height="1132" data-path="public/images/how-to-guides/data-quality-observability/quality/select-export-suite.png" />
5. Repeat steps 5 to 6 from [Bulk Export Test Cases for a Table](#bulk-export-test-cases-for-a-table).

## Bulk Export All Test Cases

To export test cases across your entire OpenMetadata instance:

1. Navigate to **Data Observability** > **Data Quality**, and click **Test Cases**.
   <img src="https://mintcdn.com/openmetadata-fix-release-notes/jK97OZGF8lmQkA1K/public/images/how-to-guides/data-quality-observability/quality/test-cases-tab.png?fit=max&auto=format&n=jK97OZGF8lmQkA1K&q=85&s=5f2ebcea15cc90ea575ceffad4e62072" alt="Test Cases Tab" width="2508" height="1284" data-path="public/images/how-to-guides/data-quality-observability/quality/test-cases-tab.png" />
2. Click the **⋮** icon and select **Export**.
   <img src="https://mintcdn.com/openmetadata-fix-release-notes/jK97OZGF8lmQkA1K/public/images/how-to-guides/data-quality-observability/quality/select-export-test-cases.png?fit=max&auto=format&n=jK97OZGF8lmQkA1K&q=85&s=52fbcb1928236f46de5f22d6fbb8c045" alt="Export test cases platform-wide" width="2534" height="1302" data-path="public/images/how-to-guides/data-quality-observability/quality/select-export-test-cases.png" />
3. Repeat steps 5 to 6 from [Bulk Export Test Cases for a Table](#bulk-export-test-cases-for-a-table).

## Export Using API

You can also export test cases using the API with the following endpoints:

`GET /api/v1/dataQuality/testCases/name/{name}/export`

`GET /api/v1/dataQuality/testCases/name/{name}/exportAsync`

Replace `{name}` with the Fully Qualified Name (FQN) of the table or test suite you're exporting from, or with `*` to export every test case in the instance. The `exportAsync` endpoint runs the export as a background job and is what the UI uses. The `export` endpoint returns the CSV synchronously.
