> ## 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 /trades: Trade Log by Query Parameter

> Trade log for a wallet supplied as a query parameter. Alternative to /traders/{address}/trades.

Returns the same trade log as [`/traders/{address}/trades`](/api/analytics/trader-trades), but the wallet address is passed as a query parameter instead of a path segment. Response shape is identical.

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

### Query Parameters

### Response

Same shape as [/traders/](/api/analytics/trader-trades#response){address}[/trades](/api/analytics/trader-trades#response).

### Example

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