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

# Export & Access Data

> View and export your extracted data from the Kadoa dashboard

## View Data

All extracted data is available in your [Kadoa Dashboard](https://kadoa.com/dashboard):

1. Navigate to your workflow
2. Browse records in the table view
3. Filter and sort to find specific items

## Export Data

1. Open a completed workflow run
2. Click **Get data** (top right)
3. Select format:
   * **CSV** - Table rows for spreadsheets
   * **JSON** - Includes metadata (`workflowId`, `runId`, `executedAt`) plus your data

**JSON structure:**

```json theme={null}
{
  "workflowId": "68e7fc4befac26b8f917755f",
  "runId": "68e7fc4cefac26b8f9177560",
  "executedAt": "2025-10-09T18:17:49.209Z",
  "data": [
    {
      "title": "Product Name",
      "price": "$99.99",
      "inStock": true,
      "extractedAt": "2024-01-15T10:30:00Z"
    }
  ]
}
```
