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

# GET /traders/{address}/positions: All Positions

> Open and closed positions for the wallet, paginated.

Returns open and closed positions for the wallet. Use [/positions/active](/api/analytics/trader-positions-active) or [/positions/closed](/api/analytics/trader-positions-closed) to fetch each subset directly.

```text theme={null}
GET https://bravado-api-k7kaq.ondigitalocean.app/traders/{address}/positions
```

### Path Parameters

### Query Parameters

<ParamField query="include_closed" default="true" type="boolean">
  When `false`, returns only open positions (equivalent to `/positions/active`).
</ParamField>

### Response: Position Fields

### Example

```bash cURL theme={null}
curl -G https://bravado-api-k7kaq.ondigitalocean.app/traders/0xabc.../positions \
  -H "Authorization: Bearer <token>" \
  -d limit=50
```
