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

# Exports

> Generate and download table, database, and schema artifacts.

Exports create tracked artifacts with an export manifest. Table exports can be CSV or JSON, database exports can be ZIP/CSV or JSON, and schema exports can be JSON or SQL.

## Export types

| Type            | Endpoint                                        | Typical use                           |
| --------------- | ----------------------------------------------- | ------------------------------------- |
| Table export    | `POST /projects/{project}/export/table/{table}` | Export one table as CSV or JSON.      |
| Database export | `POST /projects/{project}/export/database`      | Export the project database snapshot. |
| Schema export   | `POST /projects/{project}/export/schema`        | Export table/column/index metadata.   |

<CardGroup cols={2}>
  <Card title="Create table export" icon="file-spreadsheet" href="/reference/exports/create-table-export" />

  <Card title="Create database export" icon="database" href="/reference/exports/create-database-export" />

  <Card title="Create schema export" icon="braces" href="/reference/exports/create-schema-export" />

  <Card title="Download export" icon="download" href="/reference/exports/download-export" />
</CardGroup>
