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

# Exports

> Download channel performance as CSV, or pull any data programmatically via the API.

## Export channel performance (CSV)

From **Settings → Account**, export your channel performance for a date range as a CSV. The file
is one row per channel:

```csv theme={null}
channel,clicks,visitors,conversions,revenue
```

You can also hit the export endpoint directly (authenticated as your session):

```text theme={null}
GET /api/export?type=channels&days=30
```

<Note>
  CSV export of channel performance is a paid-plan feature (Free returns an upgrade prompt). The
  `days` parameter defaults to 30.
</Note>

## Pull data via the API

For anything beyond channel performance — per-link performance, the raw click stream, individual
visitor journeys — use the [REST API](/developers/introduction) with a secret key:

<CardGroup cols={2}>
  <Card title="Channels" icon="radio" href="/developers/endpoints/channels">
    Channel performance and LTV as JSON.
  </Card>

  <Card title="Links" icon="link" href="/developers/endpoints/links">
    Per-link clicks, visitors, conversions, revenue.
  </Card>

  <Card title="Clicks" icon="arrow-pointer" href="/developers/endpoints/clicks">
    The raw, cursor-paginated click stream.
  </Card>

  <Card title="Visitor journey" icon="route" href="/developers/endpoints/visitor-journey">
    Every event for one visitor, oldest first.
  </Card>
</CardGroup>

<Tip>
  Building a warehouse or a Looker Studio dashboard? Page through
  [`/api/v1/clicks`](/developers/endpoints/clicks) with the cursor and join to your own orders
  table, or schedule a pull of [`/api/v1/channels`](/developers/endpoints/channels) for a
  ready-made channel rollup.
</Tip>
