> ## Documentation Index
> Fetch the complete documentation index at: https://docs.open-metadata.org/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.12.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/0corNq5Y0FTYJtKO/public/images/how-to-guides/data-quality-observability/quality/table-test-cases.png?fit=max&auto=format&n=0corNq5Y0FTYJtKO&q=85&s=9d626b5761716710258c8215b9311202" 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/0corNq5Y0FTYJtKO/public/images/how-to-guides/data-quality-observability/quality/select-export-table.png?fit=max&auto=format&n=0corNq5Y0FTYJtKO&q=85&s=afd35c909ec09f9318b6e4fe28d72147" 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/0corNq5Y0FTYJtKO/public/images/how-to-guides/data-quality-observability/quality/confirm-export.png?fit=max&auto=format&n=0corNq5Y0FTYJtKO&q=85&s=a6276c69a73483ab07253fd424c5208c" 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/0corNq5Y0FTYJtKO/public/images/how-to-guides/data-quality-observability/quality/test-suites-test-case.png?fit=max&auto=format&n=0corNq5Y0FTYJtKO&q=85&s=12ec49ce1da63737a96530ef34874369" 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/0corNq5Y0FTYJtKO/public/images/how-to-guides/data-quality-observability/quality/select-export-suite.png?fit=max&auto=format&n=0corNq5Y0FTYJtKO&q=85&s=60cba214f5f74914535d336404129c35" 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/0corNq5Y0FTYJtKO/public/images/how-to-guides/data-quality-observability/quality/test-cases-tab.png?fit=max&auto=format&n=0corNq5Y0FTYJtKO&q=85&s=4cd85231a5b767b433668f90fc9244e0" 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/0corNq5Y0FTYJtKO/public/images/how-to-guides/data-quality-observability/quality/select-export-test-cases.png?fit=max&auto=format&n=0corNq5Y0FTYJtKO&q=85&s=fadec8e946acbfa6ac077de8ff0ea462" 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.
