> For the complete documentation index, see [llms.txt](https://abcc-docs.gitbook.io/api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://abcc-docs.gitbook.io/api/common/get-markets.md).

# Get Markets

## Get Markets

<mark style="color:blue;">`GET`</mark> `https://api.abcc.com/api/v1/common/markets`

{% tabs %}
{% tab title="200 Data successfully retrieved." %}

```
{
    "markets": [
        {
            "id": 4,
            "code": "ethbtc",
            "name": "ETH/BTC",
            "base_unit": "eth",
            "quote_unit": "btc",
            "depth_merge_min": 3,
            "depth_merge_max": 6,
            "price_fixed": 6,
            "volume_fixed": 2,
            "fee": "0.001",
            "market_partition": "normal"
        },
        {
            "id": 6,
            "code": "btcusdt",
            "name": "BTC/USDT",
            "base_unit": "btc",
            "quote_unit": "usdt",
            "depth_merge_min": 0,
            "depth_merge_max": 2,
            "price_fixed": 2,
            "volume_fixed": 6,
            "fee": "0.001",
            "market_partition": "normal"
        }
    ]
}
```

{% endtab %}
{% endtabs %}

OUTPUT EXPLANATION

| Parameter     | Type   | Explanation             |
| ------------- | ------ | ----------------------- |
| id            | String | market pair unique code |
| code          | String | market pair name        |
| name          | String | market pair name        |
| base\_unit    | String | base currency           |
| quote\_unit   | String | quote currency          |
| price\_fixed  | String | price precision         |
| volume\_fixed | String | volume precision        |
