---
title: "Top Accumulations and Distributions Per Broker"
method: GET
path: "/v2/broker-activity/{broker_code}/top/"
tags: ["Brokers"]
---

# Top Accumulations and Distributions Per Broker

`GET /v2/broker-activity/{broker_code}/top/`

Returns the stocks a single broker has been most actively accumulating and distributing over a date range. `top_accumulations` ranks stocks the broker has net bought (largest positive net IDR first); `top_distributions` ranks stocks the broker has net sold (largest negative net IDR first). Useful for tracking a specific broker's directional positioning across the IDX universe.

<Note>Broker codes are the two-letter exchange-member identifiers (e.g. `MG`, `AK`, `CC`). Retrieve the full list of valid codes from the [Broker Registry](./broker-registry) endpoint.</Note>

<Info>Costs 2 API credits.</Info>

## Path parameters

- `broker_code` string, required

## Query parameters

- `start` string
- `end` string
- `n_brokers` integer

## Response `200`

Top accumulations and distributions for the broker over the date range.

- BrokerActivityTopResponse
  - `broker_code` string, required
  - `start` string, date, required
  - `end` string, date, required
  - `top_accumulations` BrokerActivityTopAccumulation[], required
    - `rank` integer, required
    - `symbol` string, required
    - `net_idr` integer, required
    - `buy_idr` integer, required
    - `sell_idr` integer, required
  - `top_distributions` BrokerActivityTopDistribution[], required
    - `rank` integer, required
    - `symbol` string, required
    - `net_idr` integer, required
    - `buy_idr` integer, required
    - `sell_idr` integer, required

## Other responses

- `404` — Broker code not found in broker data.
- `429` — Rate limit exceeded.

---

[API](https://skmtc.dev/sectors/apis/sectors-api.md) · [All operations](https://skmtc.dev/sectors/apis/sectors-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/sectors/sectors-api/revisions/49e492f19d77/schema)
