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

# KRX Equities

> Computed Korean equity indicators served through the Alpha Indicator API.

KRX equity endpoints expose computed indicator series for supported Korean equities.

## Base endpoint

```text theme={null}
https://alpha.cryptoquant.com/api/equities
```

## Asset identifiers

The canonical asset id is:

```text theme={null}
KRX:{code}
```

The API also accepts the 6-digit KRX code, Yahoo-style ticker, and Alpha Library slug.

| Company             | Canonical id | Accepted aliases                             |
| ------------------- | ------------ | -------------------------------------------- |
| Samsung Electronics | `KRX:005930` | `005930`, `005930.KS`, `samsung-electronics` |
| SK hynix            | `KRX:000660` | `000660`, `000660.KS`, `sk-hynix`            |
| Hyundai Motor       | `KRX:005380` | `005380`, `005380.KS`, `hyundai-motor`       |

## Endpoints

### Catalog

```bash theme={null}
curl -X GET "https://alpha.cryptoquant.com/api/equities"
```

### All metrics for an asset

```bash theme={null}
curl -X GET "https://alpha.cryptoquant.com/api/equities/KRX:005930?limit=30&order=desc" \
-H "Authorization: Bearer <YOUR_API_KEY>"
```

### One metric for an asset

```bash theme={null}
curl -X GET "https://alpha.cryptoquant.com/api/equities/KRX:005930/pbr-band?limit=30&order=desc" \
-H "Authorization: Bearer <YOUR_API_KEY>"
```

## Query parameters

| Parameter | Type            | Description                                   |
| --------- | --------------- | --------------------------------------------- |
| `from`    | `YYYY-MM-DD`    | Return points on or after this date           |
| `to`      | `YYYY-MM-DD`    | Return points on or before this date          |
| `limit`   | integer         | Maximum number of rows, clamped to `1..10000` |
| `order`   | `asc` or `desc` | Sort order. Defaults to `asc`                 |

## Response shape

```json theme={null}
{
  "status": { "code": 200, "message": "success" },
  "result": {
    "asset": {
      "id": "KRX:005930",
      "code": "005930",
      "canonicalId": "KRX:005930",
      "slug": "samsung-electronics",
      "name": "Samsung Electronics",
      "ticker": "005930.KS",
      "aliases": ["005930", "005930.KS", "KRX:005930", "samsung-electronics"],
      "assetClass": "equities",
      "market": "KRX",
      "currency": "KRW",
      "sourcePolicy": "dart-computed",
      "rawRedistribution": false
    },
    "metric": {
      "id": "pbr-band",
      "name": "PBR (Price/Book)",
      "source": "dart-computed",
      "frequency": "daily"
    },
    "data": [
      { "datetime": "2026-06-17", "value": 4.3276516223258525 }
    ]
  }
}
```
