> 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/market-data/market-quotes.md).

# Market Quotes

## Get Market Quotes

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

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

```
{
    "market_quotes": {
        "btcusdt": {
            "at": 1628759309,
            "ticker": {
                "open": 46258.01,
                "change": "-0.03",
                "buy": "44953.32",
                "sell": "45203.71",
                "low": "44742.71",
                "high": "46863.67",
                "last": "45097.55",
                "vol": "235.910145"
            }
        },
        "ethusdt": {
            "at": 1628759309,
            "ticker": {
                "open": 3215.55,
                "change": "-0.03",
                "buy": "3104.03",
                "sell": "3120.83",
                "low": "3088.52",
                "high": "3276.33",
                "last": "3115.19",
                "vol": "3036.965788"
            }
        }
    }
}
```

{% endtab %}
{% endtabs %}
