---
title: "Export Orders"
method: GET
path: "/v1/orders/export"
tags: ["orders", "public"]
---

# Export Orders

`GET /v1/orders/export`

Export orders as a CSV file.

**Scopes**: `orders:read`

## Query parameters

- `organization_id` union — Filter by organization ID.
  - string, uuid4 — The organization ID.
  - string[]
- `product_id` union — Filter by product ID.
  - string, uuid4 — The product ID.
  - string[]
- `status` union — Filter by order status.
  - 'draft' | 'pending' | 'paid' | 'refunded' | 'partially_refunded' | 'void'
  - OrderStatus[]
- `created_after` string, date-time, nullable — Only include orders created after this date. Must include a UTC offset.
- `created_before` string, date-time, nullable — Only include orders created before this date. Must include a UTC offset.
- `timezone` string — Time zone used to render dates in the CSV.
- `columns` union — Columns to include in the CSV, in order. Defaults to email, created_at, product, net_amount, currency, status and invoice_number.
  - 'email' | 'created_at' | 'product' | 'net_amount' | 'currency' | 'status' | 'invoice_number' | 'customer_name' | 'billing_name' | 'billing_country' | 'subtotal_amount' | 'discount_amount' | 'tax_amount' | 'total_amount' | 'refunded_amount' | 'billing_reason'
  - OrderExportColumn[]

## Response `200`

Successful Response

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/polar/apis/polar-api.md) · [All operations](https://skmtc.net/polar/apis/polar-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/polar/polar-api/revisions/f9688fd328d6/schema)
