> For the complete documentation index, see [llms.txt](https://cetus-1.gitbook.io/cetus-developer-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cetus-1.gitbook.io/cetus-developer-docs/developer/via-sdk-v2/sdk-modules/cetusprotocol-dca-sdk/gets-dca-order.md).

# Gets DCA order

List all DCA orders owned by a wallet address:

```typescript
const wallet = 'YOUR_WALLET_ADDRESS'
const { data: orders, has_next_page } = await sdk.Dca.getDcaOrders(wallet)
```

<table><thead><tr><th width="167.21875">Parameter</th><th width="111.005126953125">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>wallet_address</code></td><td><code>string</code></td><td>Sui address of the order owner</td></tr></tbody></table>

Returns a paginated `DataPage<DcaOrder>` with fields such as `id`, `in_coin_type`, `out_coin_type`, `in_balance`, `out_balance`, `cycle_frequency`, `next_cycle_at`, and `status`.
