# Listing exchange currency pairs

<mark style="color:green;">`GET`</mark> `/api/public/v1/exchange/currency_pairs`

This endpoint returns a list of currency pairs available for exchange.

**Headers**

| Name          | Value                    |
| ------------- | ------------------------ |
| Content-Type  | application/vnd.api+json |
| Authorization | Bearer \<api\_key>       |

**Response**

{% tabs %}
{% tab title="HTTP 200" %}

```json
{
  "data": [
    {
      "id": "4018ce40-4af8-42bf-9c72-88c285e9e952",
      "type": "currencyPairs",
      "attributes": {
        "direction": "buy",
        "enabled": true,
        "minAmount": "1.000000",
        "maxAmount": "5000000.000000",
        "minAmountCurrency": "USDT",
        "maxAmountCurrency": "USDT"
      },
      "relationships": {
        "baseCurrency": {
          "data": {
            "type": "currencies",
            "id": "USDT"
          }
        },
        "quoteCurrency": {
          "data": {
            "type": "currencies",
            "id": "EUR"
          }
        }
      }
    },
    {
      "id": "9df10d72-ca21-4d3b-a58f-c538ec9e52e8",
      "type": "currencyPairs",
      "attributes": {
        "direction": "sell",
        "enabled": true,
        "minAmount": "1.000000",
        "maxAmount": "5000000.000000",
        "minAmountCurrency": "USDT",
        "maxAmountCurrency": "USDT"
      },
      "relationships": {
        "baseCurrency": {
          "data": {
            "type": "currencies",
            "id": "USDT"
          }
        },
        "quoteCurrency": {
          "data": {
            "type": "currencies",
            "id": "EUR"
          }
        }
      }
    }
  ],
  "meta": {},
  "jsonapi": {
    "version": "1.0"
  }
}

```

{% endtab %}
{% endtabs %}
