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

# Export

## `core.table.download`

Download a table's data by name as list of dicts, JSON string, NDJSON string, CSV or Markdown.

### Inputs

<ParamField path="name" type="string" required>
  The name of the table to download.
</ParamField>

<ParamField path="format" type="string | null">
  The format to download the table data in.

  Default: `null`.
</ParamField>

<ParamField path="limit" type="integer">
  The maximum number of rows to download.

  Default: `1000`.
</ParamField>

### Examples

**Export table data**

```yaml theme={null}
- ref: export_table
  action: core.table.download
  args:
    name: asset_inventory
    format: csv
    limit: 1000
```
