# Cohort Intelligence

The Segments & Cohorts endpoints provide analytics on grouped wallet and position data. These allow for aggregating statistics across defined user or asset segments, viewing segment composition, and analyzing performance by cohort.

***

### Get Cohort Definitions

`/api/external/segments`

Returns the full list of HyperTracker cohort definitions.

Each cohort includes its `id`, `name`, `category`, emoji, and the criteria used to classify wallets. Cohorts are currently grouped by wallet size and perp PnL, with each definition providing the threshold ranges used by HyperTracker.

Use this endpoint as a reference/legend when working with API responses that include `segments` or segment IDs. In the API, these are referred to as `segments`, while the HyperTracker dashboard displays them as cohorts.

This endpoint only returns cohort definitions. It does not return the wallets inside each cohort.

<table><thead><tr><th width="112.26953125">Number</th><th width="206.62890625">Segment (Cohort)</th><th>Definition</th></tr></thead><tbody><tr><td>1</td><td>🐟 Fish</td><td>$250 - $10k Perp Equity</td></tr><tr><td>2</td><td>🐬 Dolphin</td><td>$10k - $50k Perp Equity</td></tr><tr><td>3</td><td>🦈 Apex Predator</td><td>$50k - $100k Perp Equity</td></tr><tr><td>4</td><td>🐋 Small Whale</td><td>$100k - $500k Perp Equity</td></tr><tr><td>5</td><td>🐳 Whale</td><td>$500k - $1m Perp Equity</td></tr><tr><td>6</td><td>🌊 Tidal Whale</td><td>$1m - $5m Perp Equity</td></tr><tr><td>7</td><td>🐉 Leviathan</td><td>$5m Perp Equity</td></tr><tr><td>8</td><td>💰 Money Printer</td><td>$1m All-Time Perp PnL</td></tr><tr><td>9</td><td>📈 Smart Money</td><td>$100k to $1m All-Time Perp PnL</td></tr><tr><td>10</td><td>📊 Grinder</td><td>$10k to $100k All-Time Perp PnL</td></tr><tr><td>11</td><td>🙏 Humble Earner</td><td>$0k to $10k All-Time Perp PnL</td></tr><tr><td>12</td><td>🤡 Exit Liquidity</td><td>$0k to -$10k All-Time Perp PnL</td></tr><tr><td>13</td><td>🔥 Semi-Rekt</td><td>-$10k to -$100k All-Time Perp PnL</td></tr><tr><td>14</td><td>🚨 Full Rekt</td><td>-$100k to -$1m All-Time Perp PnL</td></tr><tr><td>15</td><td>💀 Giga Rekt</td><td>-$1m+ All-Time Perp PnL</td></tr><tr><td>16</td><td>🦐 Shrimp</td><td>$0 - $250 Perp Equity</td></tr></tbody></table>

Request Examples

{% tabs %}
{% tab title="Curl" %}

```
curl --request GET \
  --url 'https://ht-api.coinmarketman.com/api/external/segments' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
```

{% endtab %}

{% tab title="JavaScript" %}

```
const res = await fetch(
  'https://ht-api.coinmarketman.com/api/external/segments?limit=20&orderBy=name&order=asc',
  { headers: { Authorization: 'Bearer YOUR_API_TOKEN' } }
);
const data = await res.json();
```

{% endtab %}

{% tab title="Python" %}

```
import requests

url = "https://ht-api.coinmarketman.com/api/external/segments"

params = [
    ("limit", "20"),
    ("orderBy", "name"),
    ("order", "asc"),
]

headers = {
    "Authorization": "Bearer YOUR_API_TOKEN",
}

res = requests.get(url, headers=headers, params=params, timeout=30)
res.raise_for_status()
data = res.json()

print(data)
```

{% endtab %}
{% endtabs %}

Response

> **200 Success:** Returns the full list of HyperTracker cohort definitions, including segment IDs, names, categories, emojis, and classification criteria.

<details>

<summary>Response Example</summary>

{% code expandable="true" %}

```
[
  {
    "id": 16,
    "name": "Shrimp",
    "category": "size",
    "criteria": {
      "minSize": 0,
      "maxSize": 250
    },
    "emoji": "🦐"
  },
  {
    "id": 1,
    "name": "Fish",
    "category": "size",
    "criteria": {
      "minSize": 250,
      "maxSize": 10000
    },
    "emoji": "🐟"
  },
  {
    "id": 2,
    "category": "size",
    "name": "Dolphin",
    "criteria": {
      "minSize": 10000,
      "maxSize": 50000
    },
    "emoji": "🐬"
  },
  {
    "id": 3,
    "category": "size",
    "name": "Apex Predator",
    "criteria": {
      "minSize": 50000,
      "maxSize": 100000
    },
    "emoji": "🦈"
  },
  {
    "id": 4,
    "category": "size",
    "name": "Small Whale",
    "criteria": {
      "minSize": 100000,
      "maxSize": 500000
    },
    "emoji": "🐋"
  },
  {
    "id": 5,
    "category": "size",
    "name": "Whale",
    "criteria": {
      "minSize": 500000,
      "maxSize": 1000000
    },
    "emoji": "🐳"
  },
  {
    "id": 6,
    "category": "size",
    "name": "Tidal Whale",
    "criteria": {
      "minSize": 1000000,
      "maxSize": 5000000
    },
    "emoji": "🌊"
  },
  {
    "id": 7,
    "category": "size",
    "name": "Leviathan",
    "criteria": {
      "minSize": 5000000
    },
    "emoji": "🐉"
  },
  {
    "id": 8,
    "category": "pnl",
    "name": "Money Printer",
    "criteria": {
      "minPnl": 1000000
    },
    "emoji": "💰"
  },
  {
    "id": 9,
    "category": "pnl",
    "name": "Smart Money",
    "criteria": {
      "minPnl": 100000,
      "maxPnl": 1000000
    },
    "emoji": "📈"
  },
  {
    "id": 10,
    "category": "pnl",
    "name": "Consistent Grinder",
    "criteria": {
      "minPnl": 10000,
      "maxPnl": 100000
    },
    "emoji": "📊"
  },
  {
    "id": 11,
    "category": "pnl",
    "name": "Humble Earner",
    "criteria": {
      "minPnl": 0,
      "maxPnl": 10000
    },
    "emoji": "🙏"
  },
  {
    "id": 12,
    "category": "pnl",
    "name": "Exit Liquidity",
    "criteria": {
      "minPnl": -10000,
      "maxPnl": 0
    },
    "emoji": "🤡"
  },
  {
    "id": 13,
    "category": "pnl",
    "name": "Semi-Rekt",
    "criteria": {
      "minPnl": -100000,
      "maxPnl": -10000
    },
    "emoji": "🔥"
  },
  {
    "id": 14,
    "category": "pnl",
    "name": "Full Rekt",
    "criteria": {
      "minPnl": -1000000,
      "maxPnl": -100000
    },
    "emoji": "🚨"
  },
  {
    "id": 15,
    "category": "pnl",
    "name": "Giga-Rekt",
    "criteria": {
      "maxPnl": -1000000
    },
    "emoji": "💀"
  }
]
```

{% endcode %}

</details>

***

### Get Cohort Summary

`/api/external/segments/{segmentId}/summary`

{% hint style="success" %}
**Unique to HyperTracker Users**

HyperTracker continuously segments all wallets into cohorts based on performance and size, enabling real-time cohort-level positioning and exposure analytics not available via the standard Hyperliquid API.
{% endhint %}

Returns a snapshot summary of a specific cohort, including its definition and aggregated open perpetual positioning.

The response includes:

* Cohort metadata (name, category, emoji, criteria)
* Aggregated open perp statistics across all qualifying wallets
* Positioning breakdowns (long vs short, total value, trader counts)
* Core cohort metrics such as **perp bias** and **exposure ratio**

Use the optional `positionAge` filter to scope the summary to wallets that have opened at least one position within a selected timeframe. This allows you to analyse **recent positioning behaviour** (e.g. 24h or 7d cohorts) rather than full historical positioning.

See [**Position Age Filter**](https://docs.coinmarketman.com/hypertracker-dashboard/bias#position-age-filter) for how wallet eligibility and aggregation are calculated.

All metrics are calculated across **currently open positions only**, not historical trades.

<details>

<summary>Path Parameters</summary>

<table><thead><tr><th width="151.953125">Parameter</th><th width="115.60546875">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>segmentId</code></td><td><code>number</code></td><td>The cohort (segment) ID. Use the <a href="https://docs.coinmarketman.com/rest-api/cohorts#get-cohort-summary"><strong>Get Cohort Definitions</strong></a> endpoint to retrieve available IDs.</td></tr></tbody></table>

</details>

<details>

<summary>Query Parameters</summary>

<table><thead><tr><th width="133.48828125">Parameter</th><th width="86.390625">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>positionAge</code></td><td><code>string</code></td><td>Filters the cohort to wallets that have opened at least one position within the selected timeframe.<br>Default: <code>all</code><br>Values: <code>all</code>, <code>24h</code>, <code>7d</code>, <code>30d</code></td></tr></tbody></table>

</details>

Request Examples

{% tabs %}
{% tab title="Curl" %}

```
curl -X GET \
  'https://ht-api.coinmarketman.com/api/external/segments/8/summary?positionAge=7d' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer YOUR_API_TOKEN'
```

{% endtab %}

{% tab title="Python" %}

```
import requests

segment_id = 8

response = requests.get(
    f"https://ht-api.coinmarketman.com/api/external/segments/{segment_id}/summary",
    headers={
        "accept": "application/json",
        "Authorization": "Bearer YOUR_API_TOKEN",
    },
    params={
        "positionAge": "7d",
    },
)

result = response.json()
```

{% endtab %}
{% endtabs %}

Response

> **200 Success:** Returns the cohort definition along with aggregated open perpetual positioning and exposure metrics for all qualifying wallets.

<details>

<summary>Response Example</summary>

{% code expandable="true" %}

```
{
    "segment": {
        "id": 8,
        "category": "pnl",
        "name": "Money Printer",
        "criteria": {
            "minPnl": 1000000
        },
        "emoji": "💰"
    },
    "openPerpsSummary": {
        "perpBias": -0.39,
        "exposureRatio": 1.39,
        "countOpenPositions": 2880,
        "countTradersInPosition": 91,
        "countTradersInProfit": 67,
        "totalValue": 837618110.071701,
        "totalLongValue": 301905906.426637,
        "totalActivePerpEquity": 602041907.695559,
        "bySide": [
            {
                "side": "long",
                "countOpenPositions": 1005,
                "totalValue": 301905906.426637
            },
            {
                "side": "short",
                "countOpenPositions": 1875,
                "totalValue": 535712203.64506406
            }
        ]
    },
    "summary": {
        "segmentId": 8,
        "countTradersInPosition": 91,
        "perpBias": -0.39,
        "positionValue": 837618110.071701,
        "positionLongValue": 301905906.426637,
        "positionShortValue": 535712203.64506406,
        "exposureRatio": 1.39,
        "activePerpEquity": 602041907.695559
    }
}

```

{% endcode %}

</details>

***

### Get Historical Bias Trend Data by Coin & Cohort

`/api/external/position-metrics/coin/{coin}/segment/{segment}`

<figure><img src="/files/FfOdOKgY6s6lVLXVheRN" alt="" width="563"><figcaption></figcaption></figure>

{% hint style="info" %}
This chart is a simplified visual reference of the data. This endpoint provides far more granular (15-minute) and longer-range historical bias data for individual cohorts.
{% endhint %}

{% hint style="success" %}
**Unique to HyperTracker Users**

HyperTracker reconstructs and tracks full historical position states across the exchange, enabling high-frequency time-series snapshots of cohort positioning.
{% endhint %}

Returns high-frequency time-series snapshots of position bias for a specific **coin** and **cohort (segment)**.

Each data point represents the **state of all open positions at that moment in time**, aggregated across the selected cohort.

#### Key Concept: Rolling Position Window (CRITICAL)

When `positionRecencyTimeframe` is applied (e.g. `24h`, `7d`, `30d`):

* Each snapshot is **not fixed**
* It is calculated using a **rolling window relative to that timestamp**

Example:

* If `24h` is selected
* A snapshot at `2026-02-20 18:00` only includes positions opened **after `2026-02-19 18:00`**
* A snapshot at `17:30` uses a different underlying dataset

→ Every point in the time series is dynamically recalculated based on that moment in time.

This is what makes the dataset extremely powerful for analysing **true evolving positioning**, not static aggregates.

#### Data Characteristics

* **Granularity:** \~15–20 minute state updates (per block cycle)
* **Type:** Snapshot-based time series (not event-based)
* **Pagination:** Cursor-based (`nextCursor`)
* **Highly granular + backfillable**

#### Data Availability

* `positionRecencyTimeframe = all`\
  → Available from **2026-02-19 02:06 UTC**
* `positionRecencyTimeframe ∈ {24h, 7d, 30d}`\
  → Available from **2026-03-19 10:29 UTC**

<details>

<summary>Path Parameters</summary>

<table><thead><tr><th width="138.45703125">Parameter</th><th width="116.25">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>coin</code></td><td><code>number</code></td><td>Coin ticker (for example <code>BTC</code>, <code>ETH</code>).</td></tr><tr><td><code>segment</code></td><td><code>number</code></td><td>Segment (cohort) key (path). Allowed values: <code>1</code> through <code>16</code>. <a href="/pages/2OgdlIjFaVrmIkriNBrm">See Legend.</a></td></tr></tbody></table>

</details>

<details>

<summary>Query Parameters</summary>

<table><thead><tr><th width="231.42578125">Parameter</th><th width="154.61328125">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>start</code></td><td>string (ISO8601)</td><td>Start of the time window (applies to snapshot timestamps)</td></tr><tr><td><code>end</code></td><td>string (ISO8601)</td><td>End of the time window (applies to snapshot timestamps)</td></tr><tr><td><code>limit</code></td><td>number</td><td>Maximum number of snapshot rows to return</td></tr><tr><td><code>nextCursor</code></td><td>string</td><td>Cursor for pagination. Pass the value from the previous response</td></tr><tr><td><code>positionRecencyTimeframe</code></td><td>string</td><td>Rolling position window applied to each snapshot. Allowed values: <code>all</code> (default), <code>24h</code>, <code>7d</code>, <code>30d</code></td></tr></tbody></table>

</details>

Request Examples

{% tabs %}
{% tab title="Curl" %}

```
curl --request GET \
  --url 'https://ht-api.coinmarketman.com/api/external/position-metrics/coin/BTC/segment/8' \
  --header 'Authorization: Bearer YOUR_API_TOKEN' \
  --get \
  --data-urlencode 'start=2026-02-01T00:00:00Z' \
  --data-urlencode 'end=2026-02-13T00:00:00Z' \
  --data-urlencode 'limit=500' \
  --data-urlencode 'positionRecencyTimeframe=24h'
```

{% endtab %}

{% tab title="Python" %}

```
import requests

url = "https://ht-api.coinmarketman.com/api/external/position-metrics/coin/BTC/segment/8"

params = {
    "start": "2026-02-01T00:00:00Z",
    "end": "2026-02-13T00:00:00Z",
    "limit": 500,
    "positionRecencyTimeframe": "24h"
}

headers = {
    "Authorization": "Bearer YOUR_API_TOKEN"
}

response = requests.get(url, params=params, headers=headers)
data = response.json()
```

{% endtab %}
{% endtabs %}

Response

> **200 Success:** Returns an array of time-series snapshot rows plus `nextCursor` when more results are available.

📈 **How to Interpret the Data**

Each row represents a **single snapshot of cohort positioning at a specific moment in time**.

From this data you can derive:

* **Long / Short Bias**
  * `positionCountLong / positionCount`
* **Exposure Bias**
  * `totalPositionValueLong / totalPositionValue`
* **Net Positioning**
  * Compare long vs short size and value
* **Cohort Sentiment Over Time**
  * Track how these values evolve across snapshots

<details>

<summary>Response Example</summary>

{% code expandable="true" %}

```
{
  "metrics": [
    {
      "createdAt": "2026-02-20T18:25:16.698Z",
      "coin": "BTC",
      "segmentId": 8,
      "positionCount": 169,
      "positionCountLong": 52,
      "totalPositionValue": 572338850.45952,
      "totalPositionValueLong": 203995568.81738,
      "totalFunding": 18434530.104283,
      "totalUnrealizedPnl": 54751786.104479,
      "totalPositionSize": 8474.82528,
      "totalPositionSizeLong": 3020.63507
    },
    {
      "createdAt": "2026-02-20T18:12:31.732Z",
      "coin": "BTC",
      "segmentId": 8,
      "positionCount": 170,
      "positionCountLong": 53,
      "totalPositionValue": 581650511.9958,
      "totalPositionValueLong": 211244171.2464,
      "totalFunding": 18434483.764031,
      "totalUnrealizedPnl": 54874145.579457,
      "totalPositionSize": 8620.10955,
      "totalPositionSizeLong": 3130.6564
    },
    {
      "createdAt": "2026-02-20T17:56:30.821Z",
      "coin": "BTC",
      "segmentId": 8,
      "positionCount": 169,
      "positionCountLong": 54,
      "totalPositionValue": 562163870.164,
      "totalPositionValueLong": 198551844.257,
      "totalFunding": 18432696.899567,
      "totalUnrealizedPnl": 55838879.413241,
      "totalPositionSize": 8377.3768,
      "totalPositionSizeLong": 2958.8234
    },
    {
      "createdAt": "2026-02-20T17:43:00.458Z",
      "coin": "BTC",
      "segmentId": 8,
      "positionCount": 170,
      "positionCountLong": 56,
      "totalPositionValue": 577688167.94623,
      "totalPositionValueLong": 208405628.6775,
      "totalFunding": 18432654.853937,
      "totalUnrealizedPnl": 56036894.024234,
      "totalPositionSize": 8621.82541,
      "totalPositionSizeLong": 3110.3925
    },
    {
      "createdAt": "2026-02-20T17:29:28.258Z",
      "coin": "BTC",
      "segmentId": 8,
      "positionCount": 170,
      "positionCountLong": 58,
      "totalPositionValue": 596770335.96065,
      "totalPositionValueLong": 218585797.40551,
      "totalFunding": 18432654.820121,
      "totalUnrealizedPnl": 55845406.844474,
      "totalPositionSize": 8898.65255,
      "totalPositionSizeLong": 3259.40977
    },
    {
      "createdAt": "2026-02-20T17:16:07.559Z",
      "coin": "BTC",
      "segmentId": 8,
      "positionCount": 169,
      "positionCountLong": 59,
      "totalPositionValue": 565305139.99028,
      "totalPositionValueLong": 200771960.54744,
      "totalFunding": 18432292.282754,
      "totalUnrealizedPnl": 54730585.124265,
      "totalPositionSize": 8369.80708,
      "totalPositionSizeLong": 2972.59384
    },
    {
      "createdAt": "2026-02-20T17:04:45.642Z",
      "coin": "BTC",
      "segmentId": 8,
      "positionCount": 169,
      "positionCountLong": 57,
      "totalPositionValue": 567813505.45752,
      "totalPositionValueLong": 199551991.04043,
      "totalFunding": 18431614.88808,
      "totalUnrealizedPnl": 54478655.970724,
      "totalPositionSize": 8394.51672,
      "totalPositionSizeLong": 2950.16323
    },
    {
      "createdAt": "2026-02-20T16:55:20.605Z",
      "coin": "BTC",
      "segmentId": 8,
      "positionCount": 169,
      "positionCountLong": 56,
      "totalPositionValue": 569063746.6037,
      "totalPositionValueLong": 203605444.88706,
      "totalFunding": 18431614.88808,
      "totalUnrealizedPnl": 54874329.217766,
      "totalPositionSize": 8432.32295,
      "totalPositionSizeLong": 3017.00271
    },
    {
      "createdAt": "2026-02-20T16:42:45.870Z",
      "coin": "BTC",
      "segmentId": 8,
      "positionCount": 169,
      "positionCountLong": 59,
      "totalPositionValue": 573302894.1654,
      "totalPositionValueLong": 210582747.2347,
      "totalFunding": 18431210.293934,
      "totalUnrealizedPnl": 55161494.249247,
      "totalPositionSize": 8507.23986,
      "totalPositionSizeLong": 3124.83673
    },
    {
      "createdAt": "2026-02-20T16:30:01.122Z",
      "coin": "BTC",
      "segmentId": 8,
      "positionCount": 169,
      "positionCountLong": 58,
      "totalPositionValue": 570759928.90803,
      "totalPositionValueLong": 206647976.11449,
      "totalFunding": 18431589.72818,
      "totalUnrealizedPnl": 54763732.978064,
      "totalPositionSize": 8447.06787,
      "totalPositionSizeLong": 3058.32521
    }
  ],
  "nextCursor": "eyJjcmVhdGVkQXQiOiIyMDI2LTAyLTIwVDE2OjMwOjAxLjEyMloifQ.4Ds9Eo1DF4OrFxJP6NWGyewKr6Mw0OpVrMIWXP0VgQA"
}
```

{% endcode %}

</details>

***

### Export Bias Trend Snapshots (All, 24h, 7d, 30d)

`/api/external/exports/coins/{coin}/{file}`&#x20;

<figure><img src="/files/p5aFqbiC9AR65B2YUNZS" alt="" width="563"><figcaption></figcaption></figure>

{% hint style="info" %}
This dataset powers the **Bias Trend chart on the** [**Perps**](https://app.coinmarketman.com/hypertracker/perps) **page**, providing \~7 days of cohort bias data in 12-hour intervals.
{% endhint %}

{% hint style="success" %}
**Unique to HyperTracker Users**

This export gives builders a ready-made cohort bias trend dataset that is not available through the standard Hyperliquid API.
{% endhint %}

Exports a snapshot of the Perps bias trend chart for the selected coin and position age window.

Each file returns all cohort bias data needed to rebuild the full chart in a single request, covering the **last \~7 days** with **12-hour** intervals plus the **latest** snapshot.

Use the `file` path parameter to choose whether the dataset is based on **all** open positions, or only positions opened within the last **24h**, **7d**, or **30d**.

The download link expires quickly, usually after about 120 seconds, so it should be used shortly after it is returned.

<details>

<summary>Available Files</summary>

<table><thead><tr><th width="194.83203125">File</th><th width="153.75390625" align="right">Position window</th><th>Description</th></tr></thead><tbody><tr><td><code>segment-metrics</code></td><td align="right">All positions</td><td>Bias trend snapshot using all open positions at each point in time.</td></tr><tr><td><code>segment-metrics-24h</code></td><td align="right">24h</td><td>Bias trend snapshot using positions opened within the rolling 24h window at each timestamp.</td></tr><tr><td><code>segment-metrics-7d</code></td><td align="right">7d</td><td>Bias trend snapshot using positions opened within the rolling 7d window at each timestamp.</td></tr><tr><td><code>segment-metrics-30d</code></td><td align="right">30d</td><td>Bias trend snapshot using positions opened within the rolling 30d window at each timestamp.</td></tr></tbody></table>

</details>

<details>

<summary>Path Parameters</summary>

<table><thead><tr><th width="118.5078125">Parameter</th><th width="101.86328125">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>coin</code></td><td><code>string</code></td><td>Coin symbol, case-insensitive. For example <code>BTC</code>, <code>ETH</code>.</td></tr><tr><td><code>file</code></td><td><code>string</code></td><td>Export file to return. Supported values: <code>segment-metrics</code>, <code>segment-metrics-24h</code>, <code>segment-metrics-7d</code>, <code>segment-metrics-30d</code>.</td></tr></tbody></table>

</details>

Request Examples

{% tabs %}
{% tab title="Curl" %}

```
curl --request GET \
  --url 'https://ht-api.coinmarketman.com/api/external/exports/coins/BTC/segment-metrics-24h' \
  --header 'Authorization: Bearer YOUR_API_TOKEN' \
  --location
```

{% endtab %}

{% tab title="Python" %}

```
import requests

response = requests.get(
    'https://ht-api.coinmarketman.com/api/external/exports/coins/BTC/segment-metrics-24h',
    headers={'Authorization': 'Bearer YOUR_API_TOKEN'},
    allow_redirects=True
)

export_data = response.json()
```

{% endtab %}
{% endtabs %}

Response

> **200 Success:** Redirects to a temporary pre-signed S3 URL for the requested export file.

<details>

<summary>Response Example</summary>

{% code expandable="true" %}

```
{
    "coin": "BTC",
    "data": [
        {
            "segment": {
                "id": 16,
                "name": "Shrimp",
                "category": "size",
                "criteria": {
                    "minSize": 0,
                    "maxSize": 250
                },
                "emoji": "🦐"
            },
            "metrics": {
                "columns": [
                    "positionCount",
                    "positionCountLong",
                    "totalPositionValue",
                    "totalPositionValueLong",
                    "bias",
                    "timestamp"
                ],
                "data": [
                    [
                        13515,
                        8161,
                        6045949.6065,
                        3457820.2895,
                        0.57192,
                        "2026-04-28T05:41:51.897Z"
                    ],
                    [
                        13455,
                        8117,
                        6173692.91858,
                        3635219.12369,
                        0.58882,
                        "2026-04-28T00:00:00.000Z"
                    ],
                    [
                        13266,
                        7772,
                        7174202.36568,
                        4346452.80261,
                        0.60584,
                        "2026-04-27T12:00:00.000Z"
                    ],
                    [
                        13478,
                        7939,
                        6113733.69936,
                        3436234.38072,
                        0.56205,
                        "2026-04-27T00:00:00.000Z"
                    ],
                    [
                        14162,
                        8204,
                        8223104.29824,
                        4515435.7749,
                        0.54912,
                        "2026-04-26T12:00:00.000Z"
                    ],
                    [
                        13843,
                        8163,
                        6471200.50119,
                        3340705.55457,
                        0.51624,
                        "2026-04-26T00:00:00.000Z"
                    ],
                    [
                        13902,
                        8283,
                        6452071.5926,
                        3522886.09604,
                        0.54601,
                        "2026-04-25T12:00:00.000Z"
                    ],
                    [
                        13728,
                        8086,
                        8178080.6088,
                        5000432.90565,
                        0.61144,
                        "2026-04-25T00:00:00.000Z"
                    ],
                    [
                        13499,
                        7855,
                        6278096.47444,
                        3292831.3446,
                        0.5245,
                        "2026-04-24T12:00:00.000Z"
                    ],
                    [
                        13265,
                        7434,
                        5977886.9292,
                        2297519.847,
                        0.38434,
                        "2026-04-24T00:00:00.000Z"
                    ],
                    [
                        13218,
                        7141,
                        14241326.40454,
                        9182933.34828,
                        0.64481,
                        "2026-04-23T12:00:00.000Z"
                    ],
                    [
                        12925,
                        6887,
                        8778890.70528,
                        4955439.55628,
                        0.56447,
                        "2026-04-23T00:00:00.000Z"
                    ],
                    [
                        12856,
                        7096,
                        6491528.92359,
                        2154218.11029,
                        0.33185,
                        "2026-04-22T12:00:00.000Z"
                    ],
                    [
                        12469,
                        7039,
                        6848031.66462,
                        2260549.48774,
                        0.3301,
                        "2026-04-22T00:00:00.000Z"
                    ],
                    [
                        11977,
                        6714,
                        17361852.0972,
                        2418945.28176,
                        0.13933,
                        "2026-04-21T12:00:00.000Z"
                    ],
                    [
                        12920,
                        7254,
                        6064982.43134,
                        2984549.85206,
                        0.4921,
                        "2026-04-21T00:00:00.000Z"
                    ]
                ]
            }
        },
        {
            "segment": {
                "id": 1,
                "name": "Fish",
                "category": "size",
                "criteria": {
                    "minSize": 250,
                    "maxSize": 10000
                },
                "emoji": "🐟"
            },
            "metrics": {
                "columns": [
                    "positionCount",
                    "positionCountLong",
                    "totalPositionValue",
                    "totalPositionValueLong",
                    "bias",
                    "timestamp"
                ],
                "data": [
                    [
                        13116,
                        6057,
                        105810293.65275,
                        47243437.9795,
                        0.44649,
                        "2026-04-28T05:41:51.897Z"
                    ],
                    [
                        13056,
                        6020,
                        104501942.41135,
                        47922030.19296,
                        0.45858,
                        "2026-04-28T00:00:00.000Z"
                    ],
                    [
                        13025,
                        6071,
                        103454505.60427,
                        48096320.9983,
                        0.4649,
                        "2026-04-27T12:00:00.000Z"
                    ],
                    [
                        12886,
                        5939,
                        108144134.65064,
                        42836928.1692,
                        0.39611,
                        "2026-04-27T00:00:00.000Z"
                    ],
                    [
                        12998,
                        5885,
                        107585866.7809,
                        42125613.23294,
                        0.39155,
                        "2026-04-26T12:00:00.000Z"
                    ],
                    [
                        13003,
                        5904,
                        108578881.74182,
                        46815679.91754,
                        0.43117,
                        "2026-04-26T00:00:00.000Z"
                    ],
                    [
                        13049,
                        5895,
                        107940597.78591,
                        47901882.58142,
                        0.44378,
                        "2026-04-25T12:00:00.000Z"
                    ],
                    [
                        13012,
                        5851,
                        106466130.3735,
                        45306438.69,
                        0.42555,
                        "2026-04-25T00:00:00.000Z"
                    ],
                    [
                        12991,
                        5768,
                        107879179.64373,
                        42738688.99113,
                        0.39617,
                        "2026-04-24T12:00:00.000Z"
                    ],
                    [
                        12823,
                        5670,
                        103913451.08982,
                        40971715.50638,
                        0.39429,
                        "2026-04-24T00:00:00.000Z"
                    ],
                    [
                        12959,
                        5550,
                        103862768.8077,
                        37407155.24295,
                        0.36016,
                        "2026-04-23T12:00:00.000Z"
                    ],
                    [
                        13000,
                        5469,
                        102501084.43956,
                        37386576.71196,
                        0.36474,
                        "2026-04-23T00:00:00.000Z"
                    ],
                    [
                        12737,
                        5598,
                        108078941.979,
                        34797493.8935,
                        0.32196,
                        "2026-04-22T12:00:00.000Z"
                    ],
                    [
                        12291,
                        5531,
                        95209916.61384,
                        33470156.93828,
                        0.35154,
                        "2026-04-22T00:00:00.000Z"
                    ],
                    [
                        12645,
                        5586,
                        95290491.37825,
                        40812584.71325,
                        0.4283,
                        "2026-04-21T12:00:00.000Z"
                    ],
                    [
                        12688,
                        5851,
                        96072199.06232,
                        40332394.88166,
                        0.41981,
                        "2026-04-21T00:00:00.000Z"
                    ]
                ]
            }
        },
        {
            "segment": {
                "id": 2,
                "category": "size",
                "name": "Dolphin",
                "criteria": {
                    "minSize": 10000,
                    "maxSize": 50000
                },
                "emoji": "🐬"
            },
            "metrics": {
                "columns": [
                    "positionCount",
                    "positionCountLong",
                    "totalPositionValue",
                    "totalPositionValueLong",
                    "bias",
                    "timestamp"
                ],
                "data": [
                    [
                        2565,
                        1427,
                        188110219.561,
                        84478761.147,
                        0.44909,
                        "2026-04-28T05:41:51.897Z"
                    ],
                    [
                        2556,
                        1451,
                        186273773.61084,
                        85285987.32096,
                        0.45785,
                        "2026-04-28T00:00:00.000Z"
                    ],
                    [
                        2527,
                        1407,
                        181085480.73,
                        78754321.8,
                        0.4349,
                        "2026-04-27T12:00:00.000Z"
                    ],
                    [
                        2535,
                        1454,
                        186807255.6456,
                        86262176.48724,
                        0.46177,
                        "2026-04-27T00:00:00.000Z"
                    ],
                    [
                        2555,
                        1413,
                        192505413.68064,
                        77598325.67616,
                        0.4031,
                        "2026-04-26T12:00:00.000Z"
                    ],
                    [
                        2513,
                        1389,
                        178461986.04085,
                        73354173.78426,
                        0.41104,
                        "2026-04-26T00:00:00.000Z"
                    ],
                    [
                        2506,
                        1376,
                        178951069.1795,
                        75440365.7735,
                        0.42157,
                        "2026-04-25T12:00:00.000Z"
                    ],
                    [
                        2508,
                        1395,
                        178540915.14807,
                        75771652.58669,
                        0.42439,
                        "2026-04-25T00:00:00.000Z"
                    ],
                    [
                        2513,
                        1411,
                        178026625.9611,
                        76022379.0312,
                        0.42703,
                        "2026-04-24T12:00:00.000Z"
                    ],
                    [
                        2507,
                        1360,
                        175434250.42269,
                        70760082.00891,
                        0.40334,
                        "2026-04-24T00:00:00.000Z"
                    ],
                    [
                        2472,
                        1332,
                        174543480.13674,
                        69655145.71158,
                        0.39907,
                        "2026-04-23T12:00:00.000Z"
                    ],
                    [
                        2529,
                        1368,
                        174836627.48846,
                        64417688.5534,
                        0.36845,
                        "2026-04-23T00:00:00.000Z"
                    ],
                    [
                        2608,
                        1401,
                        190774529.96448,
                        68545847.04,
                        0.3593,
                        "2026-04-22T12:00:00.000Z"
                    ],
                    [
                        2423,
                        1428,
                        169610100.01677,
                        68062494.55356,
                        0.40129,
                        "2026-04-22T00:00:00.000Z"
                    ],
                    [
                        2434,
                        1305,
                        176640104.34382,
                        66713744.35245,
                        0.37768,
                        "2026-04-21T12:00:00.000Z"
                    ],
                    [
                        2441,
                        1399,
                        164682556.53434,
                        67787599.0556,
                        0.41163,
                        "2026-04-21T00:00:00.000Z"
                    ]
                ]
            }
        },
        {
            "segment": {
                "id": 3,
                "category": "size",
                "name": "Apex Predator",
                "criteria": {
                    "minSize": 50000,
                    "maxSize": 100000
                },
                "emoji": "🦈"
            },
            "metrics": {
                "columns": [
                    "positionCount",
                    "positionCountLong",
                    "totalPositionValue",
                    "totalPositionValueLong",
                    "bias",
                    "timestamp"
                ],
                "data": [
                    [
                        573,
                        294,
                        131939508.40525,
                        64573615.8385,
                        0.48942,
                        "2026-04-28T05:41:51.897Z"
                    ],
                    [
                        583,
                        322,
                        128845086.4613,
                        68188310.99644,
                        0.52923,
                        "2026-04-28T00:00:00.000Z"
                    ],
                    [
                        584,
                        326,
                        140910018.3967,
                        75927532.2099,
                        0.53884,
                        "2026-04-27T12:00:00.000Z"
                    ],
                    [
                        552,
                        312,
                        124658283.48337,
                        68044945.15385,
                        0.54585,
                        "2026-04-27T00:00:00.000Z"
                    ],
                    [
                        576,
                        317,
                        134505131.4156,
                        73331454.50829,
                        0.54519,
                        "2026-04-26T12:00:00.000Z"
                    ],
                    [
                        574,
                        304,
                        124493815.01723,
                        58581202.72609,
                        0.47056,
                        "2026-04-26T00:00:00.000Z"
                    ],
                    [
                        588,
                        307,
                        134200610.26048,
                        68122392.45712,
                        0.50762,
                        "2026-04-25T12:00:00.000Z"
                    ],
                    [
                        578,
                        304,
                        123810504.9599,
                        60877438.79553,
                        0.4917,
                        "2026-04-25T00:00:00.000Z"
                    ],
                    [
                        582,
                        309,
                        125196998.50959,
                        62214268.40545,
                        0.49693,
                        "2026-04-24T12:00:00.000Z"
                    ],
                    [
                        579,
                        312,
                        124059028.6761,
                        62604526.539,
                        0.50463,
                        "2026-04-24T00:00:00.000Z"
                    ],
                    [
                        579,
                        305,
                        127011923.12744,
                        62652541.18356,
                        0.49328,
                        "2026-04-23T12:00:00.000Z"
                    ],
                    [
                        567,
                        288,
                        116284057.78176,
                        51023087.82912,
                        0.43878,
                        "2026-04-23T00:00:00.000Z"
                    ],
                    [
                        574,
                        313,
                        127414316.58176,
                        54388201.96928,
                        0.42686,
                        "2026-04-22T12:00:00.000Z"
                    ],
                    [
                        564,
                        307,
                        118535428.43655,
                        53667487.64715,
                        0.45275,
                        "2026-04-22T00:00:00.000Z"
                    ],
                    [
                        576,
                        320,
                        123639648.3512,
                        58294871.616,
                        0.47149,
                        "2026-04-21T12:00:00.000Z"
                    ],
                    [
                        566,
                        311,
                        124073875.29733,
                        55012888.74249,
                        0.44339,
                        "2026-04-21T00:00:00.000Z"
                    ]
                ]
            }
        },
        {
            "segment": {
                "id": 4,
                "category": "size",
                "name": "Small Whale",
                "criteria": {
                    "minSize": 100000,
                    "maxSize": 500000
                },
                "emoji": "🐋"
            },
            "metrics": {
                "columns": [
                    "positionCount",
                    "positionCountLong",
                    "totalPositionValue",
                    "totalPositionValueLong",
                    "bias",
                    "timestamp"
                ],
                "data": [
                    [
                        711,
                        375,
                        387087396.17375,
                        179930180.44975,
                        0.46483,
                        "2026-04-28T05:41:51.897Z"
                    ],
                    [
                        711,
                        385,
                        387573352.38452,
                        180682267.39803,
                        0.46619,
                        "2026-04-28T00:00:00.000Z"
                    ],
                    [
                        710,
                        390,
                        398105187.28848,
                        196688340.0792,
                        0.49406,
                        "2026-04-27T12:00:00.000Z"
                    ],
                    [
                        724,
                        421,
                        436331374.239,
                        200137195.8582,
                        0.45868,
                        "2026-04-27T00:00:00.000Z"
                    ],
                    [
                        706,
                        377,
                        393131601.21516,
                        168445217.62932,
                        0.42847,
                        "2026-04-26T12:00:00.000Z"
                    ],
                    [
                        697,
                        368,
                        378507781.27884,
                        160549416.18,
                        0.42416,
                        "2026-04-26T00:00:00.000Z"
                    ],
                    [
                        695,
                        364,
                        383361555.15546,
                        161825839.24978,
                        0.42212,
                        "2026-04-25T12:00:00.000Z"
                    ],
                    [
                        697,
                        365,
                        383415317.98977,
                        173569745.20985,
                        0.45269,
                        "2026-04-25T00:00:00.000Z"
                    ],
                    [
                        708,
                        377,
                        405146089.43364,
                        179084623.3836,
                        0.44202,
                        "2026-04-24T12:00:00.000Z"
                    ],
                    [
                        721,
                        384,
                        415939648.7952,
                        181508314.81185,
                        0.43638,
                        "2026-04-24T00:00:00.000Z"
                    ],
                    [
                        717,
                        363,
                        412519883.2108,
                        167353971.3147,
                        0.40569,
                        "2026-04-23T12:00:00.000Z"
                    ],
                    [
                        727,
                        396,
                        436222615.29392,
                        181903386.55392,
                        0.417,
                        "2026-04-23T00:00:00.000Z"
                    ],
                    [
                        706,
                        390,
                        419398407.01458,
                        179756768.86062,
                        0.42861,
                        "2026-04-22T12:00:00.000Z"
                    ],
                    [
                        699,
                        393,
                        394840026.99021,
                        157345287.44735,
                        0.3985,
                        "2026-04-22T00:00:00.000Z"
                    ],
                    [
                        696,
                        366,
                        396905555.33727,
                        174614585.69156,
                        0.43994,
                        "2026-04-21T12:00:00.000Z"
                    ],
                    [
                        705,
                        375,
                        397545815.28836,
                        185414827.74644,
                        0.4664,
                        "2026-04-21T00:00:00.000Z"
                    ]
                ]
            }
        },
        {
            "segment": {
                "id": 5,
                "category": "size",
                "name": "Whale",
                "criteria": {
                    "minSize": 500000,
                    "maxSize": 1000000
                },
                "emoji": "🐳"
            },
            "metrics": {
                "columns": [
                    "positionCount",
                    "positionCountLong",
                    "totalPositionValue",
                    "totalPositionValueLong",
                    "bias",
                    "timestamp"
                ],
                "data": [
                    [
                        153,
                        84,
                        191703392.465,
                        94777620.91975,
                        0.4944,
                        "2026-04-28T05:41:51.897Z"
                    ],
                    [
                        155,
                        89,
                        224530985.48796,
                        100393305.44064,
                        0.44712,
                        "2026-04-28T00:00:00.000Z"
                    ],
                    [
                        152,
                        85,
                        199288525.4541,
                        103046412.33243,
                        0.51707,
                        "2026-04-27T12:00:00.000Z"
                    ],
                    [
                        157,
                        91,
                        247830749.70216,
                        124752921.216,
                        0.50338,
                        "2026-04-27T00:00:00.000Z"
                    ],
                    [
                        155,
                        92,
                        194178400.6352,
                        108144570.4326,
                        0.55693,
                        "2026-04-26T12:00:00.000Z"
                    ],
                    [
                        157,
                        88,
                        208519729.77704,
                        111854204.2464,
                        0.53642,
                        "2026-04-26T00:00:00.000Z"
                    ],
                    [
                        158,
                        88,
                        209193462.38527,
                        111710819.83072,
                        0.53401,
                        "2026-04-25T12:00:00.000Z"
                    ],
                    [
                        154,
                        84,
                        205469303.49638,
                        115059025.45078,
                        0.55998,
                        "2026-04-25T00:00:00.000Z"
                    ],
                    [
                        155,
                        85,
                        207752461.25088,
                        116172529.8202,
                        0.55919,
                        "2026-04-24T12:00:00.000Z"
                    ],
                    [
                        147,
                        81,
                        188714859.64695,
                        106230753.3105,
                        0.56292,
                        "2026-04-24T00:00:00.000Z"
                    ],
                    [
                        158,
                        83,
                        195543895.7628,
                        100789396.9056,
                        0.51543,
                        "2026-04-23T12:00:00.000Z"
                    ],
                    [
                        154,
                        84,
                        193971460.76368,
                        96007379.83888,
                        0.49496,
                        "2026-04-23T00:00:00.000Z"
                    ],
                    [
                        159,
                        96,
                        210979526.56119,
                        110123588.37309,
                        0.52196,
                        "2026-04-22T12:00:00.000Z"
                    ],
                    [
                        151,
                        93,
                        198104461.83332,
                        113867677.31205,
                        0.57479,
                        "2026-04-22T00:00:00.000Z"
                    ],
                    [
                        150,
                        80,
                        182857348.5546,
                        93202240.43292,
                        0.5097,
                        "2026-04-21T12:00:00.000Z"
                    ],
                    [
                        152,
                        85,
                        189963965.70732,
                        100886565.5588,
                        0.53108,
                        "2026-04-21T00:00:00.000Z"
                    ]
                ]
            }
        },
        {
            "segment": {
                "id": 6,
                "category": "size",
                "name": "Tidal Whale",
                "criteria": {
                    "minSize": 1000000,
                    "maxSize": 5000000
                },
                "emoji": "🌊"
            },
            "metrics": {
                "columns": [
                    "positionCount",
                    "positionCountLong",
                    "totalPositionValue",
                    "totalPositionValueLong",
                    "bias",
                    "timestamp"
                ],
                "data": [
                    [
                        133,
                        66,
                        558862211.206,
                        313587774.11375,
                        0.56112,
                        "2026-04-28T05:41:51.897Z"
                    ],
                    [
                        134,
                        72,
                        546548038.191,
                        294175081.611,
                        0.53824,
                        "2026-04-28T00:00:00.000Z"
                    ],
                    [
                        137,
                        74,
                        571755841.41392,
                        299125108.12112,
                        0.52317,
                        "2026-04-27T12:00:00.000Z"
                    ],
                    [
                        136,
                        75,
                        561797190.45136,
                        277740800.45008,
                        0.49438,
                        "2026-04-27T00:00:00.000Z"
                    ],
                    [
                        138,
                        74,
                        563811943.12072,
                        277140188.74672,
                        0.49155,
                        "2026-04-26T12:00:00.000Z"
                    ],
                    [
                        133,
                        72,
                        535170952.3248,
                        263236783.128,
                        0.49187,
                        "2026-04-26T00:00:00.000Z"
                    ],
                    [
                        133,
                        72,
                        517609962.8128,
                        280225737.00693,
                        0.54138,
                        "2026-04-25T12:00:00.000Z"
                    ],
                    [
                        134,
                        71,
                        561714719.05971,
                        289440273.36636,
                        0.51528,
                        "2026-04-25T00:00:00.000Z"
                    ],
                    [
                        135,
                        75,
                        534274982.6568,
                        276472407.792,
                        0.51747,
                        "2026-04-24T12:00:00.000Z"
                    ],
                    [
                        134,
                        71,
                        565930253.88953,
                        298022510.97089,
                        0.52661,
                        "2026-04-24T00:00:00.000Z"
                    ],
                    [
                        131,
                        70,
                        552984475.48576,
                        281032114.29446,
                        0.50821,
                        "2026-04-23T12:00:00.000Z"
                    ],
                    [
                        134,
                        76,
                        519919505.8463,
                        285271400.11755,
                        0.54868,
                        "2026-04-23T00:00:00.000Z"
                    ],
                    [
                        133,
                        78,
                        479346921.422,
                        233582201.64584,
                        0.48729,
                        "2026-04-22T12:00:00.000Z"
                    ],
                    [
                        132,
                        80,
                        478241056.42768,
                        242939550.60336,
                        0.50799,
                        "2026-04-22T00:00:00.000Z"
                    ],
                    [
                        131,
                        74,
                        427063267.70162,
                        215958728.70132,
                        0.50568,
                        "2026-04-21T12:00:00.000Z"
                    ],
                    [
                        134,
                        70,
                        498735082.8294,
                        241813902.8364,
                        0.48485,
                        "2026-04-21T00:00:00.000Z"
                    ]
                ]
            }
        },
        {
            "segment": {
                "id": 7,
                "category": "size",
                "name": "Leviathan",
                "criteria": {
                    "minSize": 5000000
                },
                "emoji": "🐉"
            },
            "metrics": {
                "columns": [
                    "positionCount",
                    "positionCountLong",
                    "totalPositionValue",
                    "totalPositionValueLong",
                    "bias",
                    "timestamp"
                ],
                "data": [
                    [
                        53,
                        29,
                        520252329.82925,
                        256856439.712,
                        0.49372,
                        "2026-04-28T05:41:51.897Z"
                    ],
                    [
                        51,
                        31,
                        509376856.43943,
                        266214442.94937,
                        0.52263,
                        "2026-04-28T00:00:00.000Z"
                    ],
                    [
                        51,
                        31,
                        506242686.87132,
                        260838204.59004,
                        0.51524,
                        "2026-04-27T12:00:00.000Z"
                    ],
                    [
                        54,
                        30,
                        582137382.0456,
                        354375630.0198,
                        0.60875,
                        "2026-04-27T00:00:00.000Z"
                    ],
                    [
                        55,
                        29,
                        577237924.6964,
                        329247571.5592,
                        0.57038,
                        "2026-04-26T12:00:00.000Z"
                    ],
                    [
                        54,
                        31,
                        566110411.05528,
                        336928254.62814,
                        0.59516,
                        "2026-04-26T00:00:00.000Z"
                    ],
                    [
                        54,
                        28,
                        565006100.5587,
                        293937714.59917,
                        0.52024,
                        "2026-04-25T12:00:00.000Z"
                    ],
                    [
                        53,
                        26,
                        550229925.3504,
                        294999880.56684,
                        0.53614,
                        "2026-04-25T00:00:00.000Z"
                    ],
                    [
                        54,
                        29,
                        553555238.61792,
                        301323650.83128,
                        0.54434,
                        "2026-04-24T12:00:00.000Z"
                    ],
                    [
                        54,
                        28,
                        622998407.37225,
                        361076934.92325,
                        0.57958,
                        "2026-04-24T00:00:00.000Z"
                    ],
                    [
                        58,
                        34,
                        647659463.4424,
                        384504294.61936,
                        0.59368,
                        "2026-04-23T12:00:00.000Z"
                    ],
                    [
                        54,
                        37,
                        618269893.88132,
                        406048931.82402,
                        0.65675,
                        "2026-04-23T00:00:00.000Z"
                    ],
                    [
                        55,
                        35,
                        637983552.6844,
                        410696945.4058,
                        0.64374,
                        "2026-04-22T12:00:00.000Z"
                    ],
                    [
                        53,
                        32,
                        541947635.138,
                        328481944.79128,
                        0.60611,
                        "2026-04-22T00:00:00.000Z"
                    ],
                    [
                        53,
                        33,
                        514989175.76884,
                        298582973.5588,
                        0.57978,
                        "2026-04-21T12:00:00.000Z"
                    ],
                    [
                        50,
                        32,
                        494414284.69641,
                        291880410.46815,
                        0.59036,
                        "2026-04-21T00:00:00.000Z"
                    ]
                ]
            }
        },
        {
            "segment": {
                "id": 8,
                "category": "pnl",
                "name": "Money Printer",
                "criteria": {
                    "minPnl": 1000000
                },
                "emoji": "💰"
            },
            "metrics": {
                "columns": [
                    "positionCount",
                    "positionCountLong",
                    "totalPositionValue",
                    "totalPositionValueLong",
                    "bias",
                    "timestamp"
                ],
                "data": [
                    [
                        156,
                        61,
                        698825554.04825,
                        325777805.78,
                        0.46618,
                        "2026-04-28T05:41:51.897Z"
                    ],
                    [
                        158,
                        74,
                        708763301.26992,
                        338863287.0987,
                        0.47811,
                        "2026-04-28T00:00:00.000Z"
                    ],
                    [
                        158,
                        73,
                        714278024.16507,
                        336382490.40111,
                        0.47094,
                        "2026-04-27T12:00:00.000Z"
                    ],
                    [
                        159,
                        65,
                        720709539.8074,
                        322021638.0456,
                        0.44681,
                        "2026-04-27T00:00:00.000Z"
                    ],
                    [
                        160,
                        71,
                        745307245.60248,
                        366307977.01113,
                        0.49149,
                        "2026-04-26T12:00:00.000Z"
                    ],
                    [
                        156,
                        68,
                        723852170.37426,
                        341403622.40108,
                        0.47165,
                        "2026-04-26T00:00:00.000Z"
                    ],
                    [
                        158,
                        72,
                        731021310.80458,
                        344083023.4177,
                        0.47069,
                        "2026-04-25T12:00:00.000Z"
                    ],
                    [
                        156,
                        65,
                        727945884.6016,
                        342081627.2936,
                        0.46993,
                        "2026-04-25T00:00:00.000Z"
                    ],
                    [
                        157,
                        70,
                        718291418.03041,
                        344647406.92702,
                        0.47982,
                        "2026-04-24T12:00:00.000Z"
                    ],
                    [
                        157,
                        65,
                        758204458.36548,
                        366130957.42255,
                        0.48289,
                        "2026-04-24T00:00:00.000Z"
                    ],
                    [
                        158,
                        69,
                        775162577.72502,
                        374248812.7764,
                        0.4828,
                        "2026-04-23T12:00:00.000Z"
                    ],
                    [
                        156,
                        77,
                        725960890.68696,
                        435340871.4176,
                        0.59968,
                        "2026-04-23T00:00:00.000Z"
                    ],
                    [
                        156,
                        83,
                        717825721.59328,
                        429111192.31006,
                        0.59779,
                        "2026-04-22T12:00:00.000Z"
                    ],
                    [
                        150,
                        81,
                        653060675.69456,
                        363398896.71024,
                        0.55646,
                        "2026-04-22T00:00:00.000Z"
                    ],
                    [
                        150,
                        65,
                        631900235.64176,
                        300663682.5588,
                        0.47581,
                        "2026-04-21T12:00:00.000Z"
                    ],
                    [
                        149,
                        69,
                        640378310.39088,
                        319048515.46156,
                        0.49822,
                        "2026-04-21T00:00:00.000Z"
                    ]
                ]
            }
        },
        {
            "segment": {
                "id": 9,
                "category": "pnl",
                "name": "Smart Money",
                "criteria": {
                    "minPnl": 100000,
                    "maxPnl": 1000000
                },
                "emoji": "📈"
            },
            "metrics": {
                "columns": [
                    "positionCount",
                    "positionCountLong",
                    "totalPositionValue",
                    "totalPositionValueLong",
                    "bias",
                    "timestamp"
                ],
                "data": [
                    [
                        404,
                        199,
                        242149155.88525,
                        129195132.10525,
                        0.53354,
                        "2026-04-28T05:41:51.897Z"
                    ],
                    [
                        404,
                        199,
                        242149155.88525,
                        129195132.10525,
                        0.53354,
                        "2026-04-28T00:00:00.000Z"
                    ],
                    [
                        402,
                        199,
                        240769160.76177,
                        132189201.37071,
                        0.54903,
                        "2026-04-27T12:00:00.000Z"
                    ],
                    [
                        409,
                        233,
                        254581286.29128,
                        166145174.7699,
                        0.65262,
                        "2026-04-27T00:00:00.000Z"
                    ],
                    [
                        411,
                        204,
                        248123779.30388,
                        153567300.86236,
                        0.61891,
                        "2026-04-26T12:00:00.000Z"
                    ],
                    [
                        412,
                        202,
                        251803786.61504,
                        142530556.16272,
                        0.56604,
                        "2026-04-26T00:00:00.000Z"
                    ],
                    [
                        412,
                        199,
                        250840862.31372,
                        143240761.87076,
                        0.57104,
                        "2026-04-25T12:00:00.000Z"
                    ],
                    [
                        406,
                        198,
                        254540533.00214,
                        148856188.83569,
                        0.5848,
                        "2026-04-25T00:00:00.000Z"
                    ],
                    [
                        414,
                        198,
                        235846619.66232,
                        148388026.60728,
                        0.62917,
                        "2026-04-24T12:00:00.000Z"
                    ],
                    [
                        404,
                        187,
                        252282652.37417,
                        145961085.36053,
                        0.57856,
                        "2026-04-24T00:00:00.000Z"
                    ],
                    [
                        407,
                        212,
                        244612185.15908,
                        147617107.40523,
                        0.60347,
                        "2026-04-23T12:00:00.000Z"
                    ],
                    [
                        404,
                        192,
                        256758167.78088,
                        165762504.16101,
                        0.6456,
                        "2026-04-23T00:00:00.000Z"
                    ],
                    [
                        406,
                        229,
                        229385687.38326,
                        139545166.57782,
                        0.60834,
                        "2026-04-22T12:00:00.000Z"
                    ],
                    [
                        394,
                        206,
                        263265443.8095,
                        144473423.75625,
                        0.54877,
                        "2026-04-22T00:00:00.000Z"
                    ],
                    [
                        397,
                        204,
                        234813723.10184,
                        128615471.32624,
                        0.54773,
                        "2026-04-21T12:00:00.000Z"
                    ],
                    [
                        402,
                        182,
                        244615882.0896,
                        128216262.537,
                        0.52415,
                        "2026-04-21T00:00:00.000Z"
                    ]
                ]
            }
        },
        {
            "segment": {
                "id": 10,
                "category": "pnl",
                "name": "Consistent Grinder",
                "criteria": {
                    "minPnl": 10000,
                    "maxPnl": 100000
                },
                "emoji": "📊"
            },
            "metrics": {
                "columns": [
                    "positionCount",
                    "positionCountLong",
                    "totalPositionValue",
                    "totalPositionValueLong",
                    "bias",
                    "timestamp"
                ],
                "data": [
                    [
                        810,
                        400,
                        145367986.4165,
                        80813076.43025,
                        0.55592,
                        "2026-04-28T05:41:51.897Z"
                    ],
                    [
                        826,
                        430,
                        142172425.59212,
                        82300981.14007,
                        0.57888,
                        "2026-04-28T00:00:00.000Z"
                    ],
                    [
                        833,
                        436,
                        118865825.90467,
                        69906030.06419,
                        0.58811,
                        "2026-04-27T12:00:00.000Z"
                    ],
                    [
                        834,
                        448,
                        120137345.5902,
                        68122457.54685,
                        0.56704,
                        "2026-04-27T00:00:00.000Z"
                    ],
                    [
                        824,
                        419,
                        146251954.31858,
                        73294960.65302,
                        0.50116,
                        "2026-04-26T12:00:00.000Z"
                    ],
                    [
                        830,
                        425,
                        122038352.47734,
                        63421474.38048,
                        0.51968,
                        "2026-04-26T00:00:00.000Z"
                    ],
                    [
                        828,
                        409,
                        123448385.56125,
                        63635058.5475,
                        0.51548,
                        "2026-04-25T12:00:00.000Z"
                    ],
                    [
                        827,
                        413,
                        124022391.5661,
                        68957989.96644,
                        0.55601,
                        "2026-04-25T00:00:00.000Z"
                    ],
                    [
                        838,
                        418,
                        136669853.38412,
                        65069677.42632,
                        0.47611,
                        "2026-04-24T12:00:00.000Z"
                    ],
                    [
                        830,
                        427,
                        141127785.85255,
                        74079281.65589,
                        0.52491,
                        "2026-04-24T00:00:00.000Z"
                    ],
                    [
                        815,
                        429,
                        122930504.75088,
                        68588313.16608,
                        0.55794,
                        "2026-04-23T12:00:00.000Z"
                    ],
                    [
                        844,
                        398,
                        134223484.21224,
                        57764992.24024,
                        0.43036,
                        "2026-04-23T00:00:00.000Z"
                    ],
                    [
                        834,
                        433,
                        121418758.98208,
                        60306887.05952,
                        0.49669,
                        "2026-04-22T12:00:00.000Z"
                    ],
                    [
                        797,
                        392,
                        161957108.26638,
                        101497398.90052,
                        0.62669,
                        "2026-04-22T00:00:00.000Z"
                    ],
                    [
                        801,
                        369,
                        128883769.13874,
                        60113077.67696,
                        0.46641,
                        "2026-04-21T12:00:00.000Z"
                    ],
                    [
                        804,
                        399,
                        134964186.9532,
                        69628531.67775,
                        0.5159,
                        "2026-04-21T00:00:00.000Z"
                    ]
                ]
            }
        },
        {
            "segment": {
                "id": 11,
                "category": "pnl",
                "name": "Humble Earner",
                "criteria": {
                    "minPnl": 0,
                    "maxPnl": 10000
                },
                "emoji": "🙏"
            },
            "metrics": {
                "columns": [
                    "positionCount",
                    "positionCountLong",
                    "totalPositionValue",
                    "totalPositionValueLong",
                    "bias",
                    "timestamp"
                ],
                "data": [
                    [
                        10198,
                        5025,
                        71417693.09,
                        30989715.49275,
                        0.43392,
                        "2026-04-28T05:41:51.897Z"
                    ],
                    [
                        10208,
                        5043,
                        70854340.64184,
                        31048214.90364,
                        0.4382,
                        "2026-04-28T00:00:00.000Z"
                    ],
                    [
                        10296,
                        5429,
                        87026687.8359,
                        47117216.99535,
                        0.54141,
                        "2026-04-27T12:00:00.000Z"
                    ],
                    [
                        10288,
                        5693,
                        67856615.14667,
                        38793147.21289,
                        0.57169,
                        "2026-04-27T00:00:00.000Z"
                    ],
                    [
                        10355,
                        5625,
                        69075876.2005,
                        38189067.28351,
                        0.55286,
                        "2026-04-26T12:00:00.000Z"
                    ],
                    [
                        10362,
                        5409,
                        69180611.07634,
                        38782653.68152,
                        0.5606,
                        "2026-04-26T00:00:00.000Z"
                    ],
                    [
                        10295,
                        5087,
                        67444155.79848,
                        34530096.09204,
                        0.51198,
                        "2026-04-25T12:00:00.000Z"
                    ],
                    [
                        10235,
                        5132,
                        70899217.2886,
                        31854167.2991,
                        0.44929,
                        "2026-04-25T00:00:00.000Z"
                    ],
                    [
                        10244,
                        5003,
                        74145562.0999,
                        32482567.96648,
                        0.43809,
                        "2026-04-24T12:00:00.000Z"
                    ],
                    [
                        10120,
                        5113,
                        63831847.20074,
                        29133011.57491,
                        0.4564,
                        "2026-04-24T00:00:00.000Z"
                    ],
                    [
                        10257,
                        5007,
                        70078435.3498,
                        30871976.8456,
                        0.44053,
                        "2026-04-23T12:00:00.000Z"
                    ],
                    [
                        10217,
                        4877,
                        81333396.50242,
                        34775253.53431,
                        0.42756,
                        "2026-04-23T00:00:00.000Z"
                    ],
                    [
                        10095,
                        5216,
                        68043502.082,
                        30910221.916,
                        0.45427,
                        "2026-04-22T12:00:00.000Z"
                    ],
                    [
                        9942,
                        5069,
                        65067338.03746,
                        32793399.11208,
                        0.50399,
                        "2026-04-22T00:00:00.000Z"
                    ],
                    [
                        10034,
                        4762,
                        75328066.4652,
                        33810791.9796,
                        0.44885,
                        "2026-04-21T12:00:00.000Z"
                    ],
                    [
                        10116,
                        5250,
                        67853756.80974,
                        35362895.59536,
                        0.52116,
                        "2026-04-21T00:00:00.000Z"
                    ]
                ]
            }
        },
        {
            "segment": {
                "id": 12,
                "category": "pnl",
                "name": "Exit Liquidity",
                "criteria": {
                    "minPnl": -10000,
                    "maxPnl": 0
                },
                "emoji": "🤡"
            },
            "metrics": {
                "columns": [
                    "positionCount",
                    "positionCountLong",
                    "totalPositionValue",
                    "totalPositionValueLong",
                    "bias",
                    "timestamp"
                ],
                "data": [
                    [
                        16724,
                        9461,
                        114401895.3605,
                        48770041.52825,
                        0.4263,
                        "2026-04-28T05:41:51.897Z"
                    ],
                    [
                        16710,
                        9418,
                        114354058.53525,
                        48560061.74289,
                        0.42465,
                        "2026-04-28T00:00:00.000Z"
                    ],
                    [
                        16498,
                        9072,
                        113155141.11597,
                        49790991.31596,
                        0.44002,
                        "2026-04-27T12:00:00.000Z"
                    ],
                    [
                        15790,
                        8311,
                        97502525.95695,
                        36544444.5912,
                        0.37481,
                        "2026-04-27T00:00:00.000Z"
                    ],
                    [
                        16818,
                        8812,
                        114672791.852,
                        41164466.25,
                        0.35897,
                        "2026-04-26T12:00:00.000Z"
                    ],
                    [
                        16824,
                        8834,
                        115538577.17576,
                        40560668.0033,
                        0.35106,
                        "2026-04-26T00:00:00.000Z"
                    ],
                    [
                        16808,
                        9266,
                        111925005.15856,
                        43687015.8344,
                        0.39032,
                        "2026-04-25T12:00:00.000Z"
                    ],
                    [
                        16629,
                        8917,
                        123193099.20582,
                        53457494.3469,
                        0.43393,
                        "2026-04-25T00:00:00.000Z"
                    ],
                    [
                        16320,
                        8206,
                        111467133.56457,
                        41124130.24113,
                        0.36894,
                        "2026-04-24T12:00:00.000Z"
                    ],
                    [
                        16178,
                        8562,
                        105365939.5305,
                        40963007.0861,
                        0.38877,
                        "2026-04-24T00:00:00.000Z"
                    ],
                    [
                        15618,
                        8028,
                        105232386.53144,
                        36949284.15976,
                        0.35112,
                        "2026-04-23T12:00:00.000Z"
                    ],
                    [
                        15743,
                        7274,
                        104690221.27236,
                        30977561.00313,
                        0.2959,
                        "2026-04-23T00:00:00.000Z"
                    ],
                    [
                        15532,
                        7362,
                        107168875.10574,
                        32480141.74206,
                        0.30307,
                        "2026-04-22T12:00:00.000Z"
                    ],
                    [
                        14852,
                        7542,
                        102923541.53256,
                        34524455.46804,
                        0.33544,
                        "2026-04-22T00:00:00.000Z"
                    ],
                    [
                        15693,
                        8245,
                        108753185.65113,
                        40637235.97871,
                        0.37366,
                        "2026-04-21T12:00:00.000Z"
                    ],
                    [
                        15597,
                        8144,
                        98706399.34092,
                        33852887.7596,
                        0.34297,
                        "2026-04-21T00:00:00.000Z"
                    ]
                ]
            }
        },
        {
            "segment": {
                "id": 13,
                "category": "pnl",
                "name": "Semi-Rekt",
                "criteria": {
                    "minPnl": -100000,
                    "maxPnl": -10000
                },
                "emoji": "🔥"
            },
            "metrics": {
                "columns": [
                    "positionCount",
                    "positionCountLong",
                    "totalPositionValue",
                    "totalPositionValueLong",
                    "bias",
                    "timestamp"
                ],
                "data": [
                    [
                        1893,
                        970,
                        192416549.52425,
                        86773759.28975,
                        0.45097,
                        "2026-04-28T05:41:51.897Z"
                    ],
                    [
                        1885,
                        967,
                        178916415.38856,
                        74178843.07788,
                        0.4146,
                        "2026-04-28T00:00:00.000Z"
                    ],
                    [
                        1832,
                        916,
                        177051806.1172,
                        64954886.54068,
                        0.36687,
                        "2026-04-27T12:00:00.000Z"
                    ],
                    [
                        1895,
                        944,
                        203412352.73672,
                        75231307.64585,
                        0.36985,
                        "2026-04-27T00:00:00.000Z"
                    ],
                    [
                        1933,
                        988,
                        204592342.01492,
                        77963307.47932,
                        0.38107,
                        "2026-04-26T12:00:00.000Z"
                    ],
                    [
                        1878,
                        949,
                        187404095.868,
                        74836715.679,
                        0.39933,
                        "2026-04-26T00:00:00.000Z"
                    ],
                    [
                        1884,
                        966,
                        188912785.9444,
                        74118633.38208,
                        0.39234,
                        "2026-04-25T12:00:00.000Z"
                    ],
                    [
                        1895,
                        974,
                        179632686.01446,
                        68976350.639,
                        0.38399,
                        "2026-04-25T00:00:00.000Z"
                    ],
                    [
                        1932,
                        951,
                        211184904.59103,
                        71202458.95632,
                        0.33716,
                        "2026-04-24T12:00:00.000Z"
                    ],
                    [
                        1883,
                        922,
                        207662087.6457,
                        68674493.76585,
                        0.3307,
                        "2026-04-24T00:00:00.000Z"
                    ],
                    [
                        1884,
                        930,
                        216248661.15895,
                        71670467.8795,
                        0.33143,
                        "2026-04-23T12:00:00.000Z"
                    ],
                    [
                        1910,
                        865,
                        221533199.7088,
                        65523267.40688,
                        0.29577,
                        "2026-04-23T00:00:00.000Z"
                    ],
                    [
                        1965,
                        881,
                        210364195.81408,
                        66568735.31968,
                        0.31645,
                        "2026-04-22T12:00:00.000Z"
                    ],
                    [
                        1783,
                        937,
                        166207012.54956,
                        59701772.24694,
                        0.3592,
                        "2026-04-22T00:00:00.000Z"
                    ],
                    [
                        1835,
                        1002,
                        174555082.67208,
                        67449305.05752,
                        0.38641,
                        "2026-04-21T12:00:00.000Z"
                    ],
                    [
                        1773,
                        982,
                        160197119.19894,
                        67004972.12266,
                        0.41827,
                        "2026-04-21T00:00:00.000Z"
                    ]
                ]
            }
        },
        {
            "segment": {
                "id": 14,
                "category": "pnl",
                "name": "Full Rekt",
                "criteria": {
                    "minPnl": -1000000,
                    "maxPnl": -100000
                },
                "emoji": "🚨"
            },
            "metrics": {
                "columns": [
                    "positionCount",
                    "positionCountLong",
                    "totalPositionValue",
                    "totalPositionValueLong",
                    "bias",
                    "timestamp"
                ],
                "data": [
                    [
                        534,
                        319,
                        329674677.81475,
                        159631893.7745,
                        0.48421,
                        "2026-04-28T05:41:51.897Z"
                    ],
                    [
                        548,
                        328,
                        346456547.6021,
                        160647780.38448,
                        0.46369,
                        "2026-04-28T00:00:00.000Z"
                    ],
                    [
                        553,
                        339,
                        340838412.528,
                        173039082.88448,
                        0.50769,
                        "2026-04-27T12:00:00.000Z"
                    ],
                    [
                        533,
                        301,
                        379739784.759,
                        163738801.7928,
                        0.43119,
                        "2026-04-27T00:00:00.000Z"
                    ],
                    [
                        529,
                        300,
                        331018805.46984,
                        160349227.89906,
                        0.48441,
                        "2026-04-26T12:00:00.000Z"
                    ],
                    [
                        536,
                        312,
                        316354619.08843,
                        161347135.63305,
                        0.51002,
                        "2026-04-26T00:00:00.000Z"
                    ],
                    [
                        516,
                        295,
                        314316749.2617,
                        159706869.65117,
                        0.50811,
                        "2026-04-25T12:00:00.000Z"
                    ],
                    [
                        517,
                        291,
                        324625181.55189,
                        156350585.83469,
                        0.48163,
                        "2026-04-25T00:00:00.000Z"
                    ],
                    [
                        519,
                        297,
                        323528657.00265,
                        156964199.73435,
                        0.48516,
                        "2026-04-24T12:00:00.000Z"
                    ],
                    [
                        517,
                        288,
                        314865710.95175,
                        145948759.31895,
                        0.46353,
                        "2026-04-24T00:00:00.000Z"
                    ],
                    [
                        522,
                        292,
                        323442879.71336,
                        154821030.24083,
                        0.47867,
                        "2026-04-23T12:00:00.000Z"
                    ],
                    [
                        536,
                        281,
                        356580502.53165,
                        150780086.51706,
                        0.42285,
                        "2026-04-23T00:00:00.000Z"
                    ],
                    [
                        546,
                        280,
                        372084725.38492,
                        146960897.8443,
                        0.39497,
                        "2026-04-22T12:00:00.000Z"
                    ],
                    [
                        527,
                        302,
                        307568614.26512,
                        135393648.74568,
                        0.44021,
                        "2026-04-22T00:00:00.000Z"
                    ],
                    [
                        504,
                        295,
                        336671154.7548,
                        164214517.5132,
                        0.48776,
                        "2026-04-21T12:00:00.000Z"
                    ],
                    [
                        506,
                        298,
                        335031016.97144,
                        164831392.93632,
                        0.49199,
                        "2026-04-21T00:00:00.000Z"
                    ]
                ]
            }
        },
        {
            "segment": {
                "id": 15,
                "category": "pnl",
                "name": "Giga-Rekt",
                "criteria": {
                    "maxPnl": -1000000
                },
                "emoji": "💀"
            },
            "metrics": {
                "columns": [
                    "positionCount",
                    "positionCountLong",
                    "totalPositionValue",
                    "totalPositionValueLong",
                    "bias",
                    "timestamp"
                ],
                "data": [
                    [
                        100,
                        58,
                        295557788.76,
                        182954226.049,
                        0.61901,
                        "2026-04-28T05:41:51.897Z"
                    ],
                    [
                        103,
                        60,
                        318004259.81004,
                        185716418.97378,
                        0.58401,
                        "2026-04-28T00:00:00.000Z"
                    ],
                    [
                        94,
                        62,
                        295785714.22812,
                        189720865.46172,
                        0.64141,
                        "2026-04-27T12:00:00.000Z"
                    ],
                    [
                        105,
                        65,
                        318093150.03669,
                        190780712.1738,
                        0.59976,
                        "2026-04-27T00:00:00.000Z"
                    ],
                    [
                        101,
                        59,
                        315694077.90588,
                        190375917.38784,
                        0.60304,
                        "2026-04-26T12:00:00.000Z"
                    ],
                    [
                        102,
                        56,
                        305947212.65955,
                        177868803.38661,
                        0.58137,
                        "2026-04-26T00:00:00.000Z"
                    ],
                    [
                        100,
                        57,
                        322452185.74468,
                        199479612.63528,
                        0.61863,
                        "2026-04-25T12:00:00.000Z"
                    ],
                    [
                        98,
                        53,
                        305004962.81585,
                        182750494.4848,
                        0.59917,
                        "2026-04-25T00:00:00.000Z"
                    ],
                    [
                        100,
                        55,
                        315256038.8582,
                        197088749.0013,
                        0.62517,
                        "2026-04-24T12:00:00.000Z"
                    ],
                    [
                        101,
                        55,
                        353957529.15536,
                        216646936.7192,
                        0.61207,
                        "2026-04-24T00:00:00.000Z"
                    ],
                    [
                        98,
                        54,
                        351773231.4334,
                        204585082.0874,
                        0.58158,
                        "2026-04-23T12:00:00.000Z"
                    ],
                    [
                        94,
                        44,
                        316204398.2944,
                        177921456.12304,
                        0.56268,
                        "2026-04-23T00:00:00.000Z"
                    ],
                    [
                        104,
                        53,
                        374765884.1733,
                        188015191.43052,
                        0.50169,
                        "2026-04-22T12:00:00.000Z"
                    ],
                    [
                        94,
                        52,
                        307031357.98706,
                        187395389.24667,
                        0.61035,
                        "2026-04-22T00:00:00.000Z"
                    ],
                    [
                        96,
                        54,
                        292536843.97462,
                        175781586.86135,
                        0.60089,
                        "2026-04-21T12:00:00.000Z"
                    ],
                    [
                        104,
                        59,
                        296368444.12203,
                        174794762.15586,
                        0.58979,
                        "2026-04-21T00:00:00.000Z"
                    ]
                ]
            }
        }
    ]
}
```

{% endcode %}

</details>

***

### Get Cohort Bias History

`/api/external/segments/{segmentId}/bias-history`

<figure><img src="/files/3UhqhJr7fAyPFFaL5ngP" alt="" width="545"><figcaption></figcaption></figure>

{% hint style="success" %}
**Unique to HyperTracker Users**

HyperTracker continuously groups wallets into cohorts and tracks their aggregate positioning over time, creating cohort-level bias history that is not available from the standard Hyperliquid API.
{% endhint %}

Returns a timestamped history of cohort-level bias and exposure metrics over a defined time window.

Each snapshot represents the cohort’s aggregate positioning at a specific point in time, across all qualifying wallets.

The `positionRecencyTimeframe` parameter applies a **rolling eligibility filter at each snapshot**, using the same logic as the [Position Age Filter.](https://docs.coinmarketman.com/hypertracker-dashboard/bias#cohort-calculation) For every timestamp:

* A wallet is included only if it had **at least one position opened within the selected timeframe at that moment**
* If included, the wallet’s **full state at that time** is used (not just its recent positions)

This means the cohort composition is dynamically recalculated at every point in the time series. For example, with `24h`, each data point reflects the positioning of wallets that had opened positions within the previous 24 hours *at that specific timestamp*.

This creates a **true rolling view of recent cohort behaviour**, allowing you to analyse how short-term sentiment and positioning evolved over time, rather than applying a static filter to the present-day cohort.

Results are returned as a columnar time series using `historySnapshotStructure` and `history`, and are paginated using `nextCursor`.

<details>

<summary>Path Parameters</summary>

<table><thead><tr><th width="131.2578125">Parameter</th><th width="126.09765625">Type</th><th width="424.216796875">Description</th></tr></thead><tbody><tr><td><code>segmentId</code></td><td><code>number</code></td><td>The cohort (segment) ID. Use the <a href="https://docs.coinmarketman.com/rest-api/cohorts#get-cohort-summary"><strong>Get Cohort Definitions</strong></a> endpoint to retrieve available IDs.</td></tr></tbody></table>

</details>

<details>

<summary>Query Parameters</summary>

<table><thead><tr><th width="231.125">Parameter</th><th width="115.76171875">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>limit</code></td><td><code>number</code></td><td>Maximum number of positions to return per request.</td></tr><tr><td><code>nextCursor</code></td><td><code>string</code></td><td>Cursor for pagination. Use the <code>nextCursor</code> value from the previous response to fetch the next page.</td></tr><tr><td><code>start</code></td><td><code>string</code></td><td>Start of the time window (ISO 8601, UTC).</td></tr><tr><td><code>end</code></td><td><code>string</code></td><td>End of the time window (ISO 8601, UTC). If omitted, the API uses “now”.</td></tr><tr><td><code>positionRecencyTimeframe</code></td><td><code>string</code></td><td>Filters qualifying wallets by position recency. Same logic as the Position Age Filter. Default: <code>all</code>. Available values: <code>24h</code>, <code>7d</code>, <code>30d</code>, <code>all</code>.</td></tr></tbody></table>

</details>

Request Examples

{% tabs %}
{% tab title="Curl" %}

```
curl -X GET \
  'https://ht-api.coinmarketman.com/api/external/segments/8/bias-history?limit=10&start=2026-01-24T18%3A27%3A00.804Z&positionRecencyTimeframe=24h' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer YOUR_API_TOKEN'
```

{% endtab %}

{% tab title="Python" %}

```
import requests

segment_id = 8

response = requests.get(
    f"https://ht-api.coinmarketman.com/api/external/segments/{segment_id}/bias-history",
    headers={
        "accept": "application/json",
        "Authorization": "Bearer YOUR_API_TOKEN",
    },
    params={
        "start": "2026-01-24T18:27:00.804Z",
        "limit": 10,
        "positionRecencyTimeframe": "24h",
    },
)

result = response.json()
```

{% endtab %}
{% endtabs %}

Response

> **200 Success:** Returns paginated timestamped bias and exposure snapshots for the selected cohort over the requested time window.

<details>

<summary>Reponse Example</summary>

{% code expandable="true" %}

```
{
  "segment": {
    "id": 8,
    "category": "pnl",
    "name": "Money Printer",
    "criteria": {
      "minPnl": 1000000
    },
    "emoji": "💰"
  },
  "nextCursor": "eyJjcmVhdGVkQXQiOiIyMDI2LTA0LTI3VDA2OjQ1OjI2Ljk4MFoifQ.BRodTwfVStnsHFpSi_kVx6EPGUoPQCivLAmBiZwkR6M",
  "positionRecencyTimeframe": "24h",
  "start": "2026-01-24T18:27:00.804Z",
  "pageStart": "2026-04-27T09:07:12.596Z",
  "pageEnd": "2026-04-27T06:45:26.980Z",
  "historySnapshotStructure": [
    "timestamp",
    "bias",
    "exposureRatio",
    "openValue",
    "openLongValue",
    "openShortValue",
    "activePerpEquity"
  ],
  "history": [
    [
      "2026-04-27T09:07:12.596Z",
      -0.42,
      1.46,
      906021770.289077,
      322891136.845186,
      583130633.443891,
      622302490.92428
    ],
    [
      "2026-04-27T08:51:24.769Z",
      -0.42,
      1.45,
      901998595.511095,
      321625292.127047,
      580373303.384048,
      620291146.808561
    ],
    [
      "2026-04-27T08:35:32.226Z",
      -0.42,
      1.46,
      903826948.004581,
      322164591.197985,
      581662356.806596,
      620646008.068301
    ],
    [
      "2026-04-27T08:19:44.722Z",
      -0.41,
      1.45,
      894364426.532886,
      319984260.11285,
      574380166.4200361,
      617729262.709202
    ],
    [
      "2026-04-27T08:03:26.176Z",
      -0.42,
      1.45,
      897060295.277419,
      319717350.461947,
      577342944.8154719,
      617734870.593614
    ],
    [
      "2026-04-27T07:47:28.697Z",
      -0.39,
      1.39,
      837618110.071701,
      301905906.426637,
      535712203.64506406,
      602012082.444617
    ],
    [
      "2026-04-27T07:32:36.870Z",
      -0.39,
      1.39,
      838733681.962148,
      302235448.575107,
      536498233.387041,
      601488125.131755
    ],
    [
      "2026-04-27T07:17:06.449Z",
      -0.39,
      1.4,
      841373019.325234,
      302405347.603914,
      538967671.72132,
      601696923.317832
    ],
    [
      "2026-04-27T07:00:24.340Z",
      -0.39,
      1.4,
      838325280.542908,
      302235075.964182,
      536090204.57872593,
      600728653.390084
    ],
    [
      "2026-04-27T06:45:26.980Z",
      -0.42,
      1.36,
      813685248.830985,
      281745332.802815,
      531939916.02816993,
      596205524.654549
    ]
  ]
}
```

{% endcode %}

</details>

***

### Get Positions by Cohort

`/api/external/positions`

{% hint style="success" %}
**Unique to HyperTracker Users**

HyperTracker assigns wallets to cohorts based on size and all-time perp PnL, then links those cohort labels to historical and live position data.
{% endhint %}

Returns historical and currently open perpetual positions for wallets in a selected cohort.

Use the `segmentId` query parameter to filter positions to wallets assigned to a specific HyperTracker cohort, such as Money Printer, Smart Money, Whale, or Shrimp. Each position includes wallet address, coin, side, size, entry price, mark/mid pricing, leverage, position value, liquidation price, unrealised PnL, funding, lifecycle timestamps, and the wallet’s cohort IDs.

Use the `open` parameter to return only currently open positions or only closed positions. If `open` is omitted, both open and closed positions can be returned. A `null` `closeTime` indicates the position is still active.

Results are paginated using `nextCursor`.

<details>

<summary>Query Parameters</summary>

<table><thead><tr><th width="128.203125">Parameter</th><th width="126.01171875">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>limit</code></td><td><code>number</code></td><td>Maximum number of positions to return per request.</td></tr><tr><td><code>coin</code></td><td><code>string</code></td><td>Coin symbol to filter by (for example <code>ETH</code>, <code>BTC</code>, <code>LINEA</code>). If omitted, positions for all coins are returned.</td></tr><tr><td><code>nextCursor</code></td><td><code>string</code></td><td>Cursor for pagination. Use the <code>nextCursor</code> value from the previous response to fetch the next page.</td></tr><tr><td><code>address</code></td><td><code>string</code></td><td>One or more wallet addresses to include.</td></tr><tr><td><code>start</code></td><td><code>string</code></td><td>Start of the time window (ISO 8601, UTC).</td></tr><tr><td><code>end</code></td><td><code>string</code></td><td>End of the time window (ISO 8601, UTC). If omitted, the API uses “now”.</td></tr><tr><td><code>open</code></td><td><code>boolean</code></td><td>Filter by position status. <code>true</code> returns only open positions, <code>false</code> returns only closed positions. If omitted, both are returned.</td></tr><tr><td><code>segmentId</code></td><td><code>number</code></td><td>The cohort (segment) ID. Use the <a href="https://docs.coinmarketman.com/rest-api/cohorts#get-cohort-summary"><strong>Get Cohort Definitions</strong></a> endpoint to retrieve available IDs.</td></tr></tbody></table>

</details>

Request Examples

{% tabs %}
{% tab title="Curl" %}

```
curl --request GET \
  --url 'https://ht-api.coinmarketman.com/api/external/positions?segmentId=8&limit=50&open=false' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
```

{% endtab %}

{% tab title="JavaScript" %}

```
const res = await fetch(
  'https://api.example.com/api/external/positions?start=2026-02-02T15:15:28.404Z&segmentId=6',
  { headers: { Authorization: 'Bearer YOUR_API_TOKEN' } }
);
const data = await res.json();
```

{% endtab %}

{% tab title="Python" %}

```
import requests

response = requests.get(
    "https://ht-api.coinmarketman.com/api/external/positions",
    params={"start": 2026-02-02, "segmentId": 6 },
    headers={
        "Authorization": "Bearer YOUR_API_TOKEN",
    },
)

result = response.json()
```

{% endtab %}
{% endtabs %}

Response

> **200 Success:** Returns paginated position records for wallets in the selected cohort, including open/closed status, valuation metrics, risk fields, lifecycle timestamps, and wallet cohort metadata.

<details>

<summary>Response Example</summary>

```
{
  "positions": [
    {
      "address": "0x61ceef212ff4a86933c69fb6aca2fe35d8f2a62b",
      "size": 1040,
      "entryPrice": 41.256529,
      "side": "short",
      "crossLeverage": 10,
      "maxLeverage": 10,
      "coin": "HYPE",
      "szDecimals": 2,
      "markPrice": 42.28,
      "midPrice": 42.2845,
      "premiumPrice": 0.000135,
      "assetMaxLeverage": 10,
      "positionValue": 43971.2,
      "liquidationPrice": 98.587634,
      "unrealizedPnl": -1064.41009,
      "funding": 36.179075,
      "openTime": "2026-04-23T19:02:41.000Z",
      "closeTime": null,
      "updatedAt": "2026-04-27T08:47:16.000Z",
      "createdAt": "2026-04-23T19:13:43.260Z",
      "isolatedLeverage": 0,
      "id": "01d628f98a7761445af52959de13c313b2866dc431810ab3752f3d11df1962d6",
      "dex": "main",
      "profile": {
        "address": "0x61ceef212ff4a86933c69fb6aca2fe35d8f2a62b",
        "segments": [
          7,
          8
        ]
      }
    },
    {
      "address": "0x34fb5ec7d4e939161946340ea2a1f29254b893de",
      "size": 100.83,
      "entryPrice": 40.838977,
      "side": "long",
      "crossLeverage": 3,
      "maxLeverage": 10,
      "coin": "HYPE",
      "szDecimals": 2,
      "markPrice": 41.107,
      "midPrice": 41.1075,
      "premiumPrice": -0.000316,
      "assetMaxLeverage": 10,
      "positionValue": 4144.81881,
      "liquidationPrice": 0,
      "unrealizedPnl": 27.0248,
      "funding": 0.18498,
      "openTime": "2026-04-23T19:25:38.000Z",
      "closeTime": "2026-04-23T20:57:12.000Z",
      "updatedAt": "2026-04-23T20:34:29.000Z",
      "createdAt": "2026-04-23T19:31:40.765Z",
      "isolatedLeverage": 0,
      "id": "106712806c4b4dc5d3b4b0253185f0dd109f027bf073a799bac6fe8ca73f8b27",
      "dex": "main",
      "profile": {
        "address": "0x34fb5ec7d4e939161946340ea2a1f29254b893de",
        "segments": [
          6,
          8
        ]
      }
    },
    {
      "address": "0x39475d17bcd20adc540e647dae6781b153fbf3b1",
      "size": 27.31,
      "entryPrice": 40.836582,
      "side": "long",
      "crossLeverage": 10,
      "maxLeverage": 10,
      "coin": "HYPE",
      "szDecimals": 2,
      "markPrice": 41.107,
      "midPrice": 41.1075,
      "premiumPrice": -0.000316,
      "assetMaxLeverage": 10,
      "positionValue": 1122.63217,
      "liquidationPrice": 0,
      "unrealizedPnl": 7.385124,
      "funding": 0.191306,
      "openTime": "2026-04-23T19:25:38.000Z",
      "closeTime": "2026-04-23T20:57:12.000Z",
      "updatedAt": "2026-04-23T20:34:29.000Z",
      "createdAt": "2026-04-23T19:31:40.765Z",
      "isolatedLeverage": 0,
      "id": "f79db0277bc93b5acf21541da2859a52b9a14bd06dab3d3ceba4bf038d2c83f6",
      "dex": "main",
      "profile": {
        "address": "0x39475d17bcd20adc540e647dae6781b153fbf3b1",
        "segments": [
          7,
          8
        ]
      }
    },
    {
      "address": "0xf27ebb91ea420f73b59b205ac7e0b77a90ec8f3c",
      "size": 163.92,
      "entryPrice": 40.901896,
      "side": "long",
      "crossLeverage": 5,
      "maxLeverage": 10,
      "coin": "HYPE",
      "szDecimals": 2,
      "markPrice": 41.16,
      "midPrice": 41.1605,
      "premiumPrice": -0.000272,
      "assetMaxLeverage": 10,
      "positionValue": 6746.9472,
      "liquidationPrice": 0,
      "unrealizedPnl": 42.308427,
      "funding": 0.18997,
      "openTime": "2026-04-23T19:25:38.000Z",
      "closeTime": "2026-04-23T21:33:31.000Z",
      "updatedAt": "2026-04-23T21:08:46.000Z",
      "createdAt": "2026-04-23T19:31:40.765Z",
      "isolatedLeverage": 0,
      "id": "a9fd63e0d73701818b4392859a8790417d9fd3f99e59c0d058c8e7c77cf65b34",
      "dex": "main",
      "profile": {
        "address": "0xf27ebb91ea420f73b59b205ac7e0b77a90ec8f3c",
        "segments": [
          4,
          8
        ]
      }
    },
    {
      "address": "0x27c9fa86c91b84ddfa15de58c482ff662498d65d",
      "size": 47.37,
      "entryPrice": 40.867308,
      "side": "long",
      "crossLeverage": 10,
      "maxLeverage": 10,
      "coin": "HYPE",
      "szDecimals": 2,
      "markPrice": 41.456,
      "midPrice": 41.4525,
      "premiumPrice": 0.000263,
      "assetMaxLeverage": 10,
      "positionValue": 1963.77072,
      "liquidationPrice": 0,
      "unrealizedPnl": 27.886357,
      "funding": -3.053721,
      "openTime": "2026-04-23T19:37:05.000Z",
      "closeTime": "2026-04-24T21:43:24.000Z",
      "updatedAt": "2026-04-24T21:14:56.000Z",
      "createdAt": "2026-04-23T19:50:26.236Z",
      "isolatedLeverage": 0,
      "id": "72b53037428c0b18fcca1b67b1613dacfd070d20d2750519e3a8e6ff41a33c20",
      "dex": "main",
      "profile": {
        "address": "0x27c9fa86c91b84ddfa15de58c482ff662498d65d",
        "segments": [
          6,
          8
        ]
      }
    },
    {
      "address": "0x7717a7a245d9f950e586822b8c9b46863ed7bd7e",
      "size": 28.35,
      "entryPrice": 40.868237,
      "side": "long",
      "crossLeverage": 10,
      "maxLeverage": 10,
      "coin": "HYPE",
      "szDecimals": 2,
      "markPrice": 41.109,
      "midPrice": 41.106,
      "premiumPrice": -0.000574,
      "assetMaxLeverage": 10,
      "positionValue": 1165.44015,
      "liquidationPrice": 0,
      "unrealizedPnl": 6.825639,
      "funding": 0.330012,
      "openTime": "2026-04-23T19:37:05.000Z",
      "closeTime": "2026-04-23T21:15:33.000Z",
      "updatedAt": "2026-04-23T20:45:52.000Z",
      "createdAt": "2026-04-23T19:50:26.236Z",
      "isolatedLeverage": 0,
      "id": "2b6744e935309216bde9abe43561aff1273d16a549eb30703a757d129e542ea5",
      "dex": "main",
      "profile": {
        "address": "0x7717a7a245d9f950e586822b8c9b46863ed7bd7e",
        "segments": [
          7,
          8
        ]
      }
    },
    {
      "address": "0x34fb5ec7d4e939161946340ea2a1f29254b893de",
      "size": 654.16,
      "entryPrice": 41.346885,
      "side": "short",
      "crossLeverage": 3,
      "maxLeverage": 10,
      "coin": "HYPE",
      "szDecimals": 2,
      "markPrice": 41.157,
      "midPrice": 41.1565,
      "premiumPrice": -0.000226,
      "assetMaxLeverage": 10,
      "positionValue": 26923.26312,
      "liquidationPrice": 5537.795721,
      "unrealizedPnl": 124.215461,
      "funding": 1.236341,
      "openTime": "2026-04-23T20:45:52.000Z",
      "closeTime": "2026-04-24T03:30:08.000Z",
      "updatedAt": "2026-04-24T03:03:10.000Z",
      "createdAt": "2026-04-23T21:02:34.263Z",
      "isolatedLeverage": 0,
      "id": "54b65b16f148aad1f3900058f1ffc3dbac9d175ce877ab3f7fc425ce12358ae3",
      "dex": "main",
      "profile": {
        "address": "0x34fb5ec7d4e939161946340ea2a1f29254b893de",
        "segments": [
          6,
          8
        ]
      }
    },
    {
      "address": "0x39475d17bcd20adc540e647dae6781b153fbf3b1",
      "size": 334.83,
      "entryPrice": 41.043484,
      "side": "short",
      "crossLeverage": 10,
      "maxLeverage": 10,
      "coin": "HYPE",
      "szDecimals": 2,
      "markPrice": 41.167,
      "midPrice": 41.1695,
      "premiumPrice": 0,
      "assetMaxLeverage": 10,
      "positionValue": 13783.94661,
      "liquidationPrice": 23907.043945,
      "unrealizedPnl": -41.356716,
      "funding": 1.701268,
      "openTime": "2026-04-23T20:45:52.000Z",
      "closeTime": "2026-04-24T06:08:50.000Z",
      "updatedAt": "2026-04-24T05:43:23.000Z",
      "createdAt": "2026-04-23T21:02:34.263Z",
      "isolatedLeverage": 0,
      "id": "8fac137e2616da971c18f249ecdef9ba8c94f8e35e689a9bdb2e591e8b9fc24c",
      "dex": "main",
      "profile": {
        "address": "0x39475d17bcd20adc540e647dae6781b153fbf3b1",
        "segments": [
          7,
          8
        ]
      }
    },
    {
      "address": "0x7717a7a245d9f950e586822b8c9b46863ed7bd7e",
      "size": 2874.34,
      "entryPrice": 42.526579,
      "side": "short",
      "crossLeverage": 10,
      "maxLeverage": 10,
      "coin": "HYPE",
      "szDecimals": 2,
      "markPrice": 42.28,
      "midPrice": 42.2845,
      "premiumPrice": 0.000135,
      "assetMaxLeverage": 10,
      "positionValue": 121527.0952,
      "liquidationPrice": 1289.59487,
      "unrealizedPnl": 708.750704,
      "funding": 181.667225,
      "openTime": "2026-04-23T21:08:46.000Z",
      "closeTime": null,
      "updatedAt": "2026-04-27T08:47:16.000Z",
      "createdAt": "2026-04-23T21:19:33.663Z",
      "isolatedLeverage": 0,
      "id": "58fc2817497d45f2b0a2f2ca054b7f8837a297a699546e5af48a3d59eaa9d1fe",
      "dex": "main",
      "profile": {
        "address": "0x7717a7a245d9f950e586822b8c9b46863ed7bd7e",
        "segments": [
          7,
          8
        ]
      }
    },
    {
      "address": "0xf27ebb91ea420f73b59b205ac7e0b77a90ec8f3c",
      "size": 19.83,
      "entryPrice": 41.246004,
      "side": "short",
      "crossLeverage": 5,
      "maxLeverage": 10,
      "coin": "HYPE",
      "szDecimals": 2,
      "markPrice": 41.3,
      "midPrice": 41.2995,
      "premiumPrice": -0.000259,
      "assetMaxLeverage": 10,
      "positionValue": 818.979,
      "liquidationPrice": 9608.996294,
      "unrealizedPnl": -1.07075,
      "funding": 0,
      "openTime": "2026-04-23T21:31:45.000Z",
      "closeTime": "2026-04-23T21:51:19.000Z",
      "updatedAt": "2026-04-23T21:31:45.000Z",
      "createdAt": "2026-04-23T21:38:24.583Z",
      "isolatedLeverage": 0,
      "id": "9c02eaf053d51f7b8372e00bb1a596ad015222403c40e98b565bac99166c7747",
      "dex": "main",
      "profile": {
        "address": "0xf27ebb91ea420f73b59b205ac7e0b77a90ec8f3c",
        "segments": [
          4,
          8
        ]
      }
    }
  ],
  "nextCursor": "eyJvcGVuVGltZSI6IjIwMjYtMDQtMjNUMjE6MzE6NDUuMDAwWiIsImFkZHJlc3MiOiIweGYyN2ViYjkxZWE0MjBmNzNiNTliMjA1YWM3ZTBiNzdhOTBlYzhmM2MiLCJzaWRlIjoic2hvcnQiLCJjb2luIjoiSFlQRSIsImRleCI6Im1haW4ifQ.hiYENk3s4bdkEWKExQN07Xh1m2SxuzVQ8duor71RE_A"
}
```

</details>

***

### Export All Cohort Bias Time-Series (24h Position Age)

`/api/external/exports/segments-bias-charts-data-24h`

<figure><img src="/files/Y0SBotbxl8o3ydkInyKn" alt="" width="563"><figcaption></figcaption></figure>

{% hint style="success" %}
**Unique to HyperTracker Users**
{% endhint %}

Returns a 302 redirect to a short-lived download link so you can fetch an export file directly from S3.

This export provides **cohort bias over time for all cohorts in a single file**, covering a \~72-hour rolling window. It powers the **homepage cohort tile sparklines.**

Each data point is calculated using a **24h position age filter**, meaning only positions opened within the previous 24 hours (at that timestamp) are included.

The `columns` field defines the structure of each row (e.g. timestamp, bias), making it easy to plug into charts or dashboards.

> **Note:** “24h” refers to position age, not a fixed 24-hour historical window.

The download link expires quickly (\~120 seconds), so it should be used immediately after it is returned.

Request Examples

{% tabs %}
{% tab title="Curl" %}

```
curl --request GET \
  --url 'https://ht-api.coinmarketman.com/api/external/exports/segments-bias-charts-data-24h' \
  --header 'Authorization: Bearer YOUR_API_TOKEN' \
  --location
```

{% endtab %}

{% tab title="Python" %}

```
import requests

response = requests.get(
    'https://ht-api.coinmarketman.com/api/external/exports/segments-bias-charts-data-24h',
    headers={'Authorization': 'Bearer YOUR_API_TOKEN'},
    allow_redirects=True
)

export_data = response.json()
```

{% endtab %}
{% endtabs %}

Response

> **200 Success:** Redirects to a temporary pre-signed S3 URL for the requested export file.

<details>

<summary>Response Example</summary>

{% code expandable="true" %}

```
 {
        "segmentId": 1,
        "columns": [
            "timestamp",
            "bias"
        ],
        "data": [
            [
                "2026-04-25T09:46:28.589Z",
                0.79
            ],
            [
                "2026-04-25T10:50:49.835Z",
                0.85
            ],
            [
                "2026-04-25T11:55:01.669Z",
                0.88
            ],
            [
                "2026-04-25T12:59:19.670Z",
                0.86
            ],
            [
                "2026-04-25T14:02:28.214Z",
                0.95
            ],
            [
                "2026-04-25T14:52:07.451Z",
                0.91
            ],
            [
                "2026-04-25T15:56:47.710Z",
                0.85
            ],
            [
                "2026-04-25T17:01:57.780Z",
                0.73
            ],
            [
                "2026-04-25T17:50:43.809Z",
                0.67
            ],
            [
                "2026-04-25T18:55:15.220Z",
                0.67
            ],
            [
                "2026-04-25T19:59:40.240Z",
                0.74
            ],
            [
                "2026-04-25T21:04:34.240Z",
                0.79
            ],
            [
                "2026-04-25T21:53:39.894Z",
                0.72
            ],
            [
                "2026-04-25T22:59:15.180Z",
                0.77
            ],
            [
                "2026-04-26T00:02:50.539Z",
                0.75
            ],
            [
                "2026-04-26T01:06:09.420Z",
                0.79
            ],
            [
                "2026-04-26T02:08:10.950Z",
                0.7
            ],
            [
                "2026-04-26T03:10:48.880Z",
                0.71
            ],
            [
                "2026-04-26T04:12:48.641Z",
                0.75
            ],
            [
                "2026-04-26T05:00:43.975Z",
                0.76
            ],
            [
                "2026-04-26T06:04:07.946Z",
                0.5
            ],
            [
                "2026-04-26T07:07:39.790Z",
                0.57
            ],
            [
                "2026-04-26T08:11:22.834Z",
                0.5
            ],
            [
                "2026-04-26T09:15:08.490Z",
                0.56
            ],
            [
                "2026-04-26T10:02:43.899Z",
                0.42
            ],
            [
                "2026-04-26T11:07:39.651Z",
                0.38
            ],
            [
                "2026-04-26T12:10:59.214Z",
                0.33
            ],
            [
                "2026-04-26T13:14:45.003Z",
                0.21
            ],
            [
                "2026-04-26T14:18:06.136Z",
                0.26
            ],
            [
                "2026-04-26T15:21:45.437Z",
                0.42
            ],
            [
                "2026-04-26T16:08:49.175Z",
                0.54
            ],
            [
                "2026-04-26T17:11:33.225Z",
                0.56
            ],
            [
                "2026-04-26T18:15:19.107Z",
                0.62
            ],
            [
                "2026-04-26T19:18:29.111Z",
                0.88
            ],
            [
                "2026-04-26T20:22:13.788Z",
                1.08
            ],
            [
                "2026-04-26T21:26:02.884Z",
                1
            ],
            [
                "2026-04-26T22:14:24.718Z",
                1.11
            ],
            [
                "2026-04-26T23:19:29.157Z",
                1.21
            ],
            [
                "2026-04-27T00:24:59.816Z",
                1.13
            ],
            [
                "2026-04-27T01:29:05.558Z",
                1.22
            ],
            [
                "2026-04-27T02:15:53.120Z",
                1.22
            ],
            [
                "2026-04-27T03:18:32.731Z",
                1.26
            ],
            [
                "2026-04-27T04:22:29.580Z",
                1.18
            ],
            [
                "2026-04-27T05:26:21.220Z",
                1.14
            ],
            [
                "2026-04-27T06:29:42.770Z",
                1.43
            ],
            [
                "2026-04-27T07:32:36.870Z",
                1.68
            ],
            [
                "2026-04-27T08:19:44.722Z",
                1.76
            ],
            [
                "2026-04-27T09:24:09.899Z",
                1.74
            ],
            [
                "2026-04-27T10:27:49.300Z",
                1.57
            ],
            [
                "2026-04-27T11:31:30.301Z",
                1.65
            ],
            [
                "2026-04-27T12:36:35.823Z",
                1.68
            ],
            [
                "2026-04-27T13:25:27.117Z",
                1.54
            ],
            [
                "2026-04-27T14:29:21.803Z",
                1.67
            ],
            [
                "2026-04-27T15:33:52.102Z",
                1.58
            ],
            [
                "2026-04-27T16:38:12.022Z",
                1.64
            ],
            [
                "2026-04-27T17:26:49.587Z",
                1.34
            ],
            [
                "2026-04-27T18:31:15.610Z",
                1.43
            ],
            [
                "2026-04-27T19:34:13.310Z",
                1.26
            ],
            [
                "2026-04-27T20:38:18.912Z",
                1.29
            ],
            [
                "2026-04-27T21:41:46.605Z",
                1.22
            ],
            [
                "2026-04-27T22:45:26.672Z",
                1.17
            ],
            [
                "2026-04-27T23:32:51.796Z",
                1.17
            ],
            [
                "2026-04-28T00:37:32.530Z",
                1.3
            ],
            [
                "2026-04-28T01:41:08.832Z",
                1.05
            ],
            [
                "2026-04-28T02:45:08.140Z",
                1.07
            ],
            [
                "2026-04-28T03:48:17.600Z",
                1.02
            ],
            [
                "2026-04-28T04:36:00.780Z",
                0.99
            ],
            [
                "2026-04-28T05:39:52.788Z",
                0.95
            ],
            [
                "2026-04-28T06:44:07.322Z",
                0.84
            ],
            [
                "2026-04-28T07:48:03.497Z",
                0.86
            ],
            [
                "2026-04-28T08:52:40.840Z",
                0.64
            ],
            [
                "2026-04-28T08:55:14.818Z",
                0.64
            ]
        ]
    },
    {
        "segmentId": 2,
        "columns": [
            "timestamp",
            "bias"
        ],
        "data": [
            [
                "2026-04-25T09:46:28.589Z",
                0.56
            ],
            [
                "2026-04-25T10:50:49.835Z",
                0.43
            ],
            [
                "2026-04-25T11:55:01.669Z",
                0.79
            ],
            [
                "2026-04-25T12:59:19.670Z",
                0.82
            ],
            [
                "2026-04-25T14:02:28.214Z",
                0.85
            ],
            [
                "2026-04-25T14:52:07.451Z",
                0.94
            ],
            [
                "2026-04-25T15:56:47.710Z",
                0.98
            ],
            [
                "2026-04-25T17:01:57.780Z",
                0.79
            ],
            [
                "2026-04-25T17:50:43.809Z",
                0.69
            ],
            [
                "2026-04-25T18:55:15.220Z",
                0.59
            ],
            [
                "2026-04-25T19:59:40.240Z",
                0.66
            ],
            [
                "2026-04-25T21:04:34.240Z",
                0.54
            ],
            [
                "2026-04-25T21:53:39.894Z",
                0.62
            ],
            [
                "2026-04-25T22:59:15.180Z",
                0.61
            ],
            [
                "2026-04-26T00:02:50.539Z",
                0.7
            ],
            [
                "2026-04-26T01:06:09.420Z",
                0.57
            ],
            [
                "2026-04-26T02:08:10.950Z",
                0.64
            ],
            [
                "2026-04-26T03:10:48.880Z",
                0.65
            ],
            [
                "2026-04-26T04:12:48.641Z",
                0.62
            ],
            [
                "2026-04-26T05:00:43.975Z",
                0.69
            ],
            [
                "2026-04-26T06:04:07.946Z",
                0.4
            ],
            [
                "2026-04-26T07:07:39.790Z",
                0.45
            ],
            [
                "2026-04-26T08:11:22.834Z",
                0.47
            ],
            [
                "2026-04-26T09:15:08.490Z",
                0.47
            ],
            [
                "2026-04-26T10:02:43.899Z",
                0.47
            ],
            [
                "2026-04-26T11:07:39.651Z",
                0.4
            ],
            [
                "2026-04-26T12:10:59.214Z",
                0.29
            ],
            [
                "2026-04-26T13:14:45.003Z",
                0.29
            ],
            [
                "2026-04-26T14:18:06.136Z",
                0.48
            ],
            [
                "2026-04-26T15:21:45.437Z",
                0.48
            ],
            [
                "2026-04-26T16:08:49.175Z",
                0.52
            ],
            [
                "2026-04-26T17:11:33.225Z",
                0.52
            ],
            [
                "2026-04-26T18:15:19.107Z",
                0.58
            ],
            [
                "2026-04-26T19:18:29.111Z",
                0.25
            ],
            [
                "2026-04-26T20:22:13.788Z",
                0.25
            ],
            [
                "2026-04-26T21:26:02.884Z",
                0.28
            ],
            [
                "2026-04-26T22:14:24.718Z",
                0.56
            ],
            [
                "2026-04-26T23:19:29.157Z",
                0.42
            ],
            [
                "2026-04-27T00:24:59.816Z",
                0.65
            ],
            [
                "2026-04-27T01:29:05.558Z",
                0.75
            ],
            [
                "2026-04-27T02:15:53.120Z",
                0.65
            ],
            [
                "2026-04-27T03:18:32.731Z",
                0.75
            ],
            [
                "2026-04-27T04:22:29.580Z",
                0.81
            ],
            [
                "2026-04-27T05:26:21.220Z",
                0.76
            ],
            [
                "2026-04-27T06:29:42.770Z",
                0.88
            ],
            [
                "2026-04-27T07:32:36.870Z",
                1.22
            ],
            [
                "2026-04-27T08:19:44.722Z",
                1.3
            ],
            [
                "2026-04-27T09:24:09.899Z",
                1.27
            ],
            [
                "2026-04-27T10:27:49.300Z",
                1.37
            ],
            [
                "2026-04-27T11:31:30.301Z",
                1.38
            ],
            [
                "2026-04-27T12:36:35.823Z",
                1.43
            ],
            [
                "2026-04-27T13:25:27.117Z",
                1.25
            ],
            [
                "2026-04-27T14:29:21.803Z",
                1.22
            ],
            [
                "2026-04-27T15:33:52.102Z",
                1.24
            ],
            [
                "2026-04-27T16:38:12.022Z",
                1.29
            ],
            [
                "2026-04-27T17:26:49.587Z",
                1.48
            ],
            [
                "2026-04-27T18:31:15.610Z",
                1.4
            ],
            [
                "2026-04-27T19:34:13.310Z",
                1.44
            ],
            [
                "2026-04-27T20:38:18.912Z",
                1.25
            ],
            [
                "2026-04-27T21:41:46.605Z",
                1.22
            ],
            [
                "2026-04-27T22:45:26.672Z",
                1.35
            ],
            [
                "2026-04-27T23:32:51.796Z",
                1.2
            ],
            [
                "2026-04-28T00:37:32.530Z",
                1
            ],
            [
                "2026-04-28T01:41:08.832Z",
                0.91
            ],
            [
                "2026-04-28T02:45:08.140Z",
                1.07
            ],
            [
                "2026-04-28T03:48:17.600Z",
                1.12
            ],
            [
                "2026-04-28T04:36:00.780Z",
                1.17
            ],
            [
                "2026-04-28T05:39:52.788Z",
                1.03
            ],
            [
                "2026-04-28T06:44:07.322Z",
                0.91
            ],
            [
                "2026-04-28T07:48:03.497Z",
                0.84
            ],
            [
                "2026-04-28T08:52:40.840Z",
                1
            ],
            [
                "2026-04-28T08:55:14.818Z",
                0.97
            ]
        ]
    },
```

{% endcode %}

</details>

***

### Get Homepage State Summary

`/api/external/state/summary`&#x20;

<figure><img src="/files/Qx9Fn5R3lTjl3SMsI5Q7" alt="" width="563"><figcaption></figcaption></figure>

{% hint style="info" %}
**Note:** This endpoint returns the current snapshot only. For cohort bias sparklines or historical bias movement, use the [cohort bias time-series export](https://docs.coinmarketman.com/endpoints/cohort-intelligence#export-all-cohort-bias-time-series-24h-position-age) endpoint.
{% endhint %}

{% hint style="success" %}
**Unique to HyperTracker Users**

HyperTracker indexes liquidation fills in a structured, queryable format so they can be consumed directly through the API without needing to parse raw on-chain data or maintain custom Hyperliquid infrastructure.
{% endhint %}

Returns the full live state summary used to power the HyperTracker homepage.

This endpoint provides a real-time snapshot of Hyperliquid-wide activity, including total tracked wallets, active perp traders, perp volume, open interest, open position counts, and current cohort positioning.

It also includes cohort metrics across multiple position-age filters in the same response:

`segments` = all open positions\
`segments24h` = positions opened in the last **24 hours**\
`segments7d` = positions opened in the last **7 days**\
`segments30d` = positions opened in the last **30 days**

Each cohort includes trader counts, perp bias, long/short position value, active perp equity, and exposure ratio.

<p align="center"><em>This endpoint powers the</em> <a href="https://app.coinmarketman.com/hypertracker"><em>HyperTracker homepage</em></a></p>

Request Examples

{% tabs %}
{% tab title="Curl" %}

```
curl -X GET \
  'https://ht-api.coinmarketman.com/api/external/state/summary' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer YOUR_API_KEY'
```

{% endtab %}

{% tab title="Python" %}

```
import requests

url = "https://ht-api.coinmarketman.com/api/external/state/summary"

headers = {
    "accept": "application/json",
    "Authorization": "Bearer YOUR_API_KEY"
}

response = requests.get(url, headers=headers)
response.raise_for_status()

data = response.json()
print(data)
```

{% endtab %}
{% endtabs %}

Response

> **200 Success:** Returns a live homepage state object containing global wallet counts, active trader counts, cohort metrics, position-age filtered cohort snapshots, open interest, position counts, perp volume, and 24h comparison values.

<details>

<summary>Response Example</summary>

{% code expandable="true" %}

```
{
    "countTraders": 1929123,
    "countActiveTraders": 211503,
    "countTraders24HoursAgo": 1924822,
    "segments": [
        {
            "segmentId": 1,
            "segment": {
                "id": 1,
                "name": "Fish",
                "category": "size",
                "criteria": {
                    "minSize": 250,
                    "maxSize": 10000
                },
                "emoji": "🐟"
            },
            "countTradersInPosition": 34616,
            "countTraders": 45846,
            "perpBias": 0.56,
            "positionValue": 328724716.417477,
            "positionLongValue": 184757683.554019,
            "positionShortValue": 143967032.863458,
            "perpEquity": 94263902.066867,
            "activePerpEquity": 72657986.119623,
            "exposureRatio": 4.52
        },
        {
            "segmentId": 2,
            "segment": {
                "id": 2,
                "category": "size",
                "name": "Dolphin",
                "criteria": {
                    "minSize": 10000,
                    "maxSize": 50000
                },
                "emoji": "🐬"
            },
            "countTradersInPosition": 6319,
            "countTraders": 9055,
            "perpBias": 0.34,
            "positionValue": 564165759.12011,
            "positionLongValue": 305684956.267398,
            "positionShortValue": 258480802.85271204,
            "perpEquity": 198047826.422707,
            "activePerpEquity": 140256979.481985,
            "exposureRatio": 4.02
        },
        {
            "segmentId": 3,
            "segment": {
                "id": 3,
                "category": "size",
                "name": "Apex Predator",
                "criteria": {
                    "minSize": 50000,
                    "maxSize": 100000
                },
                "emoji": "🦈"
            },
            "countTradersInPosition": 1484,
            "countTraders": 1986,
            "perpBias": 0.08,
            "positionValue": 386440281.185668,
            "positionLongValue": 197573360.814716,
            "positionShortValue": 188866920.37095198,
            "perpEquity": 138986089.810409,
            "activePerpEquity": 104702695.354891,
            "exposureRatio": 3.69
        },
        {
            "segmentId": 4,
            "segment": {
                "id": 4,
                "category": "size",
                "name": "Small Whale",
                "criteria": {
                    "minSize": 100000,
                    "maxSize": 500000
                },
                "emoji": "🐋"
            },
            "countTradersInPosition": 1798,
            "countTraders": 2281,
            "perpBias": 0.02,
            "positionValue": 1271951446.39276,
            "positionLongValue": 640664506.23018,
            "positionShortValue": 631286940.16258,
            "perpEquity": 484604589.552372,
            "activePerpEquity": 385877028.833549,
            "exposureRatio": 3.3
        },
        {
            "segmentId": 5,
            "segment": {
                "id": 5,
                "category": "size",
                "name": "Whale",
                "criteria": {
                    "minSize": 500000,
                    "maxSize": 1000000
                },
                "emoji": "🐳"
            },
            "countTradersInPosition": 371,
            "countTraders": 428,
            "perpBias": -0.12,
            "positionValue": 834031714.216576,
            "positionLongValue": 401247970.723645,
            "positionShortValue": 432783743.492931,
            "perpEquity": 294523262.703807,
            "activePerpEquity": 255979088.440092,
            "exposureRatio": 3.26
        },
        {
            "segmentId": 6,
            "segment": {
                "id": 6,
                "category": "size",
                "name": "Tidal Whale",
                "criteria": {
                    "minSize": 1000000,
                    "maxSize": 5000000
                },
                "emoji": "🌊"
            },
            "countTradersInPosition": 310,
            "countTraders": 352,
            "perpBias": -0.03,
            "positionValue": 1972855677.461443,
            "positionLongValue": 974846446.290572,
            "positionShortValue": 998009231.1708709,
            "perpEquity": 750961387.75327,
            "activePerpEquity": 671523790.45894,
            "exposureRatio": 2.94
        },
        {
            "segmentId": 7,
            "segment": {
                "id": 7,
                "category": "size",
                "name": "Leviathan",
                "criteria": {
                    "minSize": 5000000
                },
                "emoji": "🐉"
            },
            "countTradersInPosition": 82,
            "countTraders": 95,
            "perpBias": -0.05,
            "positionValue": 2087052869.794402,
            "positionLongValue": 1015620403.961149,
            "positionShortValue": 1071432465.8332529,
            "perpEquity": 1685614937.223488,
            "activePerpEquity": 1170788997.298396,
            "exposureRatio": 1.78
        },
        {
            "segmentId": 8,
            "segment": {
                "id": 8,
                "category": "pnl",
                "name": "Money Printer",
                "criteria": {
                    "minPnl": 1000000
                },
                "emoji": "💰"
            },
            "countTradersInPosition": 310,
            "countTraders": 605,
            "perpBias": -0.23,
            "positionValue": 2586530623.903963,
            "positionLongValue": 1154726322.839939,
            "positionShortValue": 1431804301.064024,
            "perpEquity": 1704204440.547748,
            "activePerpEquity": 1203241060.161195,
            "exposureRatio": 2.15
        },
        {
            "segmentId": 9,
            "segment": {
                "id": 9,
                "category": "pnl",
                "name": "Smart Money",
                "criteria": {
                    "minPnl": 100000,
                    "maxPnl": 1000000
                },
                "emoji": "📈"
            },
            "countTradersInPosition": 1004,
            "countTraders": 1664,
            "perpBias": 0,
            "positionValue": 944996700.755918,
            "positionLongValue": 472633360.593994,
            "positionShortValue": 472363340.161924,
            "perpEquity": 471761600.693688,
            "activePerpEquity": 390407649.120032,
            "exposureRatio": 2.42
        },
        {
            "segmentId": 10,
            "segment": {
                "id": 10,
                "category": "pnl",
                "name": "Consistent Grinder",
                "criteria": {
                    "minPnl": 10000,
                    "maxPnl": 100000
                },
                "emoji": "📊"
            },
            "countTradersInPosition": 2557,
            "countTraders": 4579,
            "perpBias": 0.44,
            "positionValue": 533178286.24916,
            "positionLongValue": 307209925.087843,
            "positionShortValue": 225968361.161317,
            "perpEquity": 237748538.6483,
            "activePerpEquity": 185016840.465868,
            "exposureRatio": 2.88
        },
        {
            "segmentId": 11,
            "segment": {
                "id": 11,
                "category": "pnl",
                "name": "Humble Earner",
                "criteria": {
                    "minPnl": 0,
                    "maxPnl": 10000
                },
                "emoji": "🙏"
            },
            "countTradersInPosition": 28019,
            "countTraders": 65749,
            "perpBias": 0.24,
            "positionValue": 262227527.546906,
            "positionLongValue": 142751807.824546,
            "positionShortValue": 119475719.72235999,
            "perpEquity": 149984093.251664,
            "activePerpEquity": 95410682.241464,
            "exposureRatio": 2.75
        },
        {
            "segmentId": 12,
            "segment": {
                "id": 12,
                "category": "pnl",
                "name": "Exit Liquidity",
                "criteria": {
                    "minPnl": -10000,
                    "maxPnl": 0
                },
                "emoji": "🤡"
            },
            "countTradersInPosition": 51123,
            "countTraders": 144470,
            "perpBias": 0.17,
            "positionValue": 343443023.549222,
            "positionLongValue": 181342038.621127,
            "positionShortValue": 162100984.92809498,
            "perpEquity": 158528508.635472,
            "activePerpEquity": 110277540.601916,
            "exposureRatio": 3.11
        },
        {
            "segmentId": 13,
            "segment": {
                "id": 13,
                "category": "pnl",
                "name": "Semi-Rekt",
                "criteria": {
                    "minPnl": -100000,
                    "maxPnl": -10000
                },
                "emoji": "🔥"
            },
            "countTradersInPosition": 5416,
            "countTraders": 10791,
            "perpBias": 0.02,
            "positionValue": 661168492.660075,
            "positionLongValue": 332551495.594469,
            "positionShortValue": 328616997.06560594,
            "perpEquity": 221793798.939717,
            "activePerpEquity": 178282207.62014,
            "exposureRatio": 3.71
        },
        {
            "segmentId": 14,
            "segment": {
                "id": 14,
                "category": "pnl",
                "name": "Full Rekt",
                "criteria": {
                    "minPnl": -1000000,
                    "maxPnl": -100000
                },
                "emoji": "🚨"
            },
            "countTradersInPosition": 1483,
            "countTraders": 2778,
            "perpBias": -0.14,
            "positionValue": 1127792527.416658,
            "positionLongValue": 542315862.189,
            "positionShortValue": 585476665.2276579,
            "perpEquity": 370148978.986203,
            "activePerpEquity": 319223865.194465,
            "exposureRatio": 3.53
        },
        {
            "segmentId": 15,
            "segment": {
                "id": 15,
                "category": "pnl",
                "name": "Giga-Rekt",
                "criteria": {
                    "maxPnl": -1000000
                },
                "emoji": "💀"
            },
            "countTradersInPosition": 238,
            "countTraders": 494,
            "perpBias": 0.6,
            "positionValue": 1005328326.959206,
            "positionLongValue": 598778094.741354,
            "positionShortValue": 406550232.217852,
            "perpEquity": 337684074.956719,
            "activePerpEquity": 322774580.634969,
            "exposureRatio": 3.11
        },
        {
            "segmentId": 16,
            "segment": {
                "id": 16,
                "name": "Shrimp",
                "category": "size",
                "criteria": {
                    "minSize": 0,
                    "maxSize": 250
                },
                "emoji": "🦐"
            },
            "countTradersInPosition": 45170,
            "countTraders": 171087,
            "perpBias": 1.54,
            "positionValue": 19443044.452672,
            "positionLongValue": 11913579.650593,
            "positionShortValue": 7529464.802079001,
            "perpEquity": 4852039.126591,
            "activePerpEquity": 2847860.052573,
            "exposureRatio": 6.83
        }
    ],
    "segments30d": [
        {
            "segmentId": 1,
            "countTradersInPosition": 23456,
            "perpBias": 0.6,
            "positionValue": 280606611.144637,
            "positionLongValue": 155427164.960859,
            "positionShortValue": 125179446.18377799,
            "activePerpEquity": 50702608.543373,
            "exposureRatio": 5.53
        },
        {
            "segmentId": 2,
            "countTradersInPosition": 4473,
            "perpBias": 0.48,
            "positionValue": 462518722.328996,
            "positionLongValue": 254754574.671742,
            "positionShortValue": 207764147.657254,
            "activePerpEquity": 98686418.558406,
            "exposureRatio": 4.69
        },
        {
            "segmentId": 3,
            "countTradersInPosition": 1048,
            "perpBias": 0.17,
            "positionValue": 315625935.724302,
            "positionLongValue": 164003628.987538,
            "positionShortValue": 151622306.73676398,
            "activePerpEquity": 73999533.534401,
            "exposureRatio": 4.27
        },
        {
            "segmentId": 4,
            "countTradersInPosition": 1275,
            "perpBias": 0.17,
            "positionValue": 1018796333.500087,
            "positionLongValue": 533412605.531968,
            "positionShortValue": 485383727.968119,
            "activePerpEquity": 276479208.765895,
            "exposureRatio": 3.68
        },
        {
            "segmentId": 5,
            "countTradersInPosition": 282,
            "perpBias": -0.11,
            "positionValue": 688988837.545453,
            "positionLongValue": 333602788.552438,
            "positionShortValue": 355386048.99301493,
            "activePerpEquity": 194305541.991456,
            "exposureRatio": 3.55
        },
        {
            "segmentId": 6,
            "countTradersInPosition": 225,
            "perpBias": -0.07,
            "positionValue": 1487266848.967492,
            "positionLongValue": 725687418.184596,
            "positionShortValue": 761579430.7828962,
            "activePerpEquity": 498511139.521892,
            "exposureRatio": 2.98
        },
        {
            "segmentId": 7,
            "countTradersInPosition": 62,
            "perpBias": -0.21,
            "positionValue": 1736847584.099801,
            "positionLongValue": 761727188.168987,
            "positionShortValue": 975120395.930814,
            "activePerpEquity": 994167834.855263,
            "exposureRatio": 1.75
        },
        {
            "segmentId": 8,
            "countTradersInPosition": 226,
            "perpBias": -0.26,
            "positionValue": 2147161747.119123,
            "positionLongValue": 941406040.08814,
            "positionShortValue": 1205755707.030983,
            "activePerpEquity": 1020862191.285194,
            "exposureRatio": 2.1
        },
        {
            "segmentId": 9,
            "countTradersInPosition": 727,
            "perpBias": 0.06,
            "positionValue": 748467464.628543,
            "positionLongValue": 383694728.690439,
            "positionShortValue": 364772735.93810403,
            "activePerpEquity": 304934002.073553,
            "exposureRatio": 2.45
        },
        {
            "segmentId": 10,
            "countTradersInPosition": 1697,
            "perpBias": 0.64,
            "positionValue": 437552947.941735,
            "positionLongValue": 261307090.3683,
            "positionShortValue": 176245857.57343504,
            "activePerpEquity": 132615851.300474,
            "exposureRatio": 3.3
        },
        {
            "segmentId": 11,
            "countTradersInPosition": 18092,
            "perpBias": 0.25,
            "positionValue": 223626758.22745,
            "positionLongValue": 120945947.176056,
            "positionShortValue": 102680811.05139402,
            "activePerpEquity": 72642257.488261,
            "exposureRatio": 3.08
        },
        {
            "segmentId": 12,
            "countTradersInPosition": 34874,
            "perpBias": 0.2,
            "positionValue": 281649554.59575,
            "positionLongValue": 149066725.753391,
            "positionShortValue": 132582828.84235898,
            "activePerpEquity": 83365606.519594,
            "exposureRatio": 3.38
        },
        {
            "segmentId": 13,
            "countTradersInPosition": 3883,
            "perpBias": -0.16,
            "positionValue": 533945708.520316,
            "positionLongValue": 257071609.562496,
            "positionShortValue": 276874098.95782,
            "activePerpEquity": 124993855.680909,
            "exposureRatio": 4.27
        },
        {
            "segmentId": 14,
            "countTradersInPosition": 1097,
            "perpBias": -0.21,
            "positionValue": 936782444.658051,
            "positionLongValue": 442298265.504939,
            "positionShortValue": 494484179.153112,
            "activePerpEquity": 244046157.219333,
            "exposureRatio": 3.84
        },
        {
            "segmentId": 15,
            "countTradersInPosition": 177,
            "perpBias": 0.33,
            "positionValue": 698819873.078574,
            "positionLongValue": 383242622.459977,
            "positionShortValue": 315577250.618597,
            "activePerpEquity": 205396191.956715,
            "exposureRatio": 3.4
        },
        {
            "segmentId": 16,
            "countTradersInPosition": 29952,
            "perpBias": 1.74,
            "positionValue": 17355625.458774,
            "positionLongValue": 10417660.54561,
            "positionShortValue": 6937964.913164001,
            "activePerpEquity": 2003827.753347,
            "exposureRatio": 8.66
        }
    ],
    "segments7d": [
        {
            "segmentId": 1,
            "countTradersInPosition": 15860,
            "perpBias": 0.99,
            "positionValue": 197944018.642094,
            "positionLongValue": 115775562.728674,
            "positionShortValue": 82168455.91341999,
            "activePerpEquity": 34048880.855485,
            "exposureRatio": 5.81
        },
        {
            "segmentId": 2,
            "countTradersInPosition": 2891,
            "perpBias": 0.95,
            "positionValue": 304402764.826152,
            "positionLongValue": 182468361.975002,
            "positionShortValue": 121934402.85115004,
            "activePerpEquity": 64033486.126566,
            "exposureRatio": 4.75
        },
        {
            "segmentId": 3,
            "countTradersInPosition": 690,
            "perpBias": 0.58,
            "positionValue": 203158240.621259,
            "positionLongValue": 115852510.681777,
            "positionShortValue": 87305729.939482,
            "activePerpEquity": 48855459.62613,
            "exposureRatio": 4.16
        },
        {
            "segmentId": 4,
            "countTradersInPosition": 873,
            "perpBias": 0.21,
            "positionValue": 718668584.947306,
            "positionLongValue": 380230983.268533,
            "positionShortValue": 338437601.67877305,
            "activePerpEquity": 195174252.964422,
            "exposureRatio": 3.68
        },
        {
            "segmentId": 5,
            "countTradersInPosition": 197,
            "perpBias": 0.07,
            "positionValue": 435803659.543663,
            "positionLongValue": 222737110.789551,
            "positionShortValue": 213066548.75411204,
            "activePerpEquity": 134905097.695185,
            "exposureRatio": 3.23
        },
        {
            "segmentId": 6,
            "countTradersInPosition": 154,
            "perpBias": 0.03,
            "positionValue": 894925690.021598,
            "positionLongValue": 453298859.712671,
            "positionShortValue": 441626830.308927,
            "activePerpEquity": 349442505.409424,
            "exposureRatio": 2.56
        },
        {
            "segmentId": 7,
            "countTradersInPosition": 43,
            "perpBias": -0.18,
            "positionValue": 1248154977.681507,
            "positionLongValue": 550146718.006301,
            "positionShortValue": 698008259.6752061,
            "activePerpEquity": 809293780.001783,
            "exposureRatio": 1.54
        },
        {
            "segmentId": 8,
            "countTradersInPosition": 169,
            "perpBias": -0.16,
            "positionValue": 1523878826.143732,
            "positionLongValue": 693961006.508554,
            "positionShortValue": 829917819.6351781,
            "activePerpEquity": 836934535.760171,
            "exposureRatio": 1.82
        },
        {
            "segmentId": 9,
            "countTradersInPosition": 508,
            "perpBias": -0.14,
            "positionValue": 529737243.661288,
            "positionLongValue": 250321037.11253,
            "positionShortValue": 279416206.54875803,
            "activePerpEquity": 212349038.859948,
            "exposureRatio": 2.49
        },
        {
            "segmentId": 10,
            "countTradersInPosition": 1137,
            "perpBias": 0.61,
            "positionValue": 292480138.15993,
            "positionLongValue": 173747246.87413,
            "positionShortValue": 118732891.28579998,
            "activePerpEquity": 90874778.044426,
            "exposureRatio": 3.22
        },
        {
            "segmentId": 11,
            "countTradersInPosition": 11930,
            "perpBias": 0.32,
            "positionValue": 155131967.666376,
            "positionLongValue": 85973476.33335,
            "positionShortValue": 69158491.33302599,
            "activePerpEquity": 51999401.343315,
            "exposureRatio": 2.98
        },
        {
            "segmentId": 12,
            "countTradersInPosition": 23857,
            "perpBias": 0.61,
            "positionValue": 187581618.870733,
            "positionLongValue": 112278737.717478,
            "positionShortValue": 75302881.15325499,
            "activePerpEquity": 60406133.271648,
            "exposureRatio": 3.11
        },
        {
            "segmentId": 13,
            "countTradersInPosition": 2624,
            "perpBias": 0.35,
            "positionValue": 347842067.176828,
            "positionLongValue": 188169035.964231,
            "positionShortValue": 159673031.212597,
            "activePerpEquity": 81433658.008763,
            "exposureRatio": 4.27
        },
        {
            "segmentId": 14,
            "countTradersInPosition": 782,
            "perpBias": 0.2,
            "positionValue": 546217059.926112,
            "positionLongValue": 289623669.071194,
            "positionShortValue": 256593390.85491806,
            "activePerpEquity": 165469137.715464,
            "exposureRatio": 3.3
        },
        {
            "segmentId": 15,
            "countTradersInPosition": 127,
            "perpBias": 0.26,
            "positionValue": 433838180.721019,
            "positionLongValue": 234850085.428792,
            "positionShortValue": 198988095.29222703,
            "activePerpEquity": 137681568.435863,
            "exposureRatio": 3.15
        },
        {
            "segmentId": 16,
            "countTradersInPosition": 20426,
            "perpBias": 2.28,
            "positionValue": 13649166.042439,
            "positionLongValue": 8414187.84775,
            "positionShortValue": 5234978.194689,
            "activePerpEquity": 1394788.760603,
            "exposureRatio": 9.79
        }
    ],
    "segments24h": [
        {
            "segmentId": 1,
            "countTradersInPosition": 8177,
            "perpBias": 0.68,
            "positionValue": 106840895.370323,
            "positionLongValue": 59520555.650144,
            "positionShortValue": 47320339.720179,
            "activePerpEquity": 17931522.005069,
            "exposureRatio": 5.96
        },
        {
            "segmentId": 2,
            "countTradersInPosition": 1527,
            "perpBias": 0.86,
            "positionValue": 159313131.381148,
            "positionLongValue": 94118853.031188,
            "positionShortValue": 65194278.349960014,
            "activePerpEquity": 33824462.011384,
            "exposureRatio": 4.71
        },
        {
            "segmentId": 3,
            "countTradersInPosition": 376,
            "perpBias": -0.09,
            "positionValue": 108105715.74214,
            "positionLongValue": 52840556.940817,
            "positionShortValue": 55265158.801323,
            "activePerpEquity": 26572805.564561,
            "exposureRatio": 4.07
        },
        {
            "segmentId": 4,
            "countTradersInPosition": 472,
            "perpBias": 0.19,
            "positionValue": 361840721.860289,
            "positionLongValue": 190827118.969394,
            "positionShortValue": 171013602.89089498,
            "activePerpEquity": 105711558.957551,
            "exposureRatio": 3.42
        },
        {
            "segmentId": 5,
            "countTradersInPosition": 122,
            "perpBias": -0.35,
            "positionValue": 226221454.577219,
            "positionLongValue": 98614127.405154,
            "positionShortValue": 127607327.172065,
            "activePerpEquity": 83092673.312107,
            "exposureRatio": 2.72
        },
        {
            "segmentId": 6,
            "countTradersInPosition": 91,
            "perpBias": -0.37,
            "positionValue": 472381091.530405,
            "positionLongValue": 197913341.896817,
            "positionShortValue": 274467749.63358796,
            "activePerpEquity": 208364531.825877,
            "exposureRatio": 2.27
        },
        {
            "segmentId": 7,
            "countTradersInPosition": 28,
            "perpBias": -0.19,
            "positionValue": 675987226.756387,
            "positionLongValue": 281057534.127279,
            "positionShortValue": 394929692.629108,
            "activePerpEquity": 597444867.572614,
            "exposureRatio": 1.13
        },
        {
            "segmentId": 8,
            "countTradersInPosition": 99,
            "perpBias": -0.2,
            "positionValue": 915347076.954771,
            "positionLongValue": 393305720.72408,
            "positionShortValue": 522041356.230691,
            "activePerpEquity": 648989911.943141,
            "exposureRatio": 1.41
        },
        {
            "segmentId": 9,
            "countTradersInPosition": 313,
            "perpBias": 0.09,
            "positionValue": 263733745.855535,
            "positionLongValue": 137418160.324146,
            "positionShortValue": 126315585.531389,
            "activePerpEquity": 124301501.421047,
            "exposureRatio": 2.12
        },
        {
            "segmentId": 10,
            "countTradersInPosition": 579,
            "perpBias": 0.65,
            "positionValue": 166835237.90448,
            "positionLongValue": 99692306.951808,
            "positionShortValue": 67142930.952672,
            "activePerpEquity": 49697224.500894,
            "exposureRatio": 3.36
        },
        {
            "segmentId": 11,
            "countTradersInPosition": 5905,
            "perpBias": 0.01,
            "positionValue": 82938350.452717,
            "positionLongValue": 41666150.783266,
            "positionShortValue": 41272199.669451006,
            "activePerpEquity": 30635514.947163,
            "exposureRatio": 2.71
        },
        {
            "segmentId": 12,
            "countTradersInPosition": 12734,
            "perpBias": 0.23,
            "positionValue": 95505885.930908,
            "positionLongValue": 52228066.824059,
            "positionShortValue": 43277819.10684899,
            "activePerpEquity": 39321841.27379,
            "exposureRatio": 2.43
        },
        {
            "segmentId": 13,
            "countTradersInPosition": 1412,
            "perpBias": -0.37,
            "positionValue": 185459271.664796,
            "positionLongValue": 84565746.48904,
            "positionShortValue": 100893525.17575599,
            "activePerpEquity": 44192737.350922,
            "exposureRatio": 4.2
        },
        {
            "segmentId": 14,
            "countTradersInPosition": 439,
            "perpBias": -0.56,
            "positionValue": 274085903.50386,
            "positionLongValue": 113843113.656665,
            "positionShortValue": 160242789.847195,
            "activePerpEquity": 82266709.400987,
            "exposureRatio": 3.33
        },
        {
            "segmentId": 15,
            "countTradersInPosition": 66,
            "perpBias": -0.38,
            "positionValue": 135028089.809186,
            "positionLongValue": 57096432.886609,
            "positionShortValue": 77931656.92257701,
            "activePerpEquity": 54243930.63013,
            "exposureRatio": 2.49
        },
        {
            "segmentId": 16,
            "countTradersInPosition": 10754,
            "perpBias": 2.27,
            "positionValue": 8243324.858342,
            "positionLongValue": 4923610.61888,
            "positionShortValue": 3319714.2394620003,
            "activePerpEquity": 706950.218911,
            "exposureRatio": 11.66
        }
    ],
    "perpPositionsMetrics": {
        "count": 261822,
        "openInterest": 7464716134.876172
    },
    "perpPositionsMetrics24HoursAgo": {
        "count": 262518,
        "openInterest": 7560808856.633572,
        "perpEquity": 2814121945.036661,
        "countInProfit": 128215
    },
    "perpVolume": 3894069457.957716,
    "perpVolume24HoursAgo": 3406216297.6067224
}
```

{% endcode %}

</details>

***


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.coinmarketman.com/endpoints/cohort-intelligence.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
