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

# Traded Markets

> Count how many markets a wallet has interacted with historically.

`client.data.misc.getTraded` reports the number of markets in which a wallet has executed trades.

## Request

```ts theme={null}
const traded = await client.data.misc.getTraded({ user });
```

### Parameters

| Name   | Type               | Required | Notes                    |
| ------ | ------------------ | -------- | ------------------------ |
| `user` | `string` (address) | ✅        | Wallet or proxy address. |

## Response

```ts theme={null}
{
  user: string;
  traded: number;
}
```

## Usage example

```ts theme={null}
const traded = await client.data.misc.getTraded({
  user: "0x56687bf447db6ffa42ffe2204a05edaa20f55839",
});

console.log(`${traded.user} has traded ${traded.traded} markets`);
```

## Failure modes

* Missing `user` → validation error.
