GET
/
users
/
{user_id}
/
exchange-limits
curl --request GET \
  --url https://api.exchange.coinbase.com/users/{user_id}/exchange-limits \
  --header 'cb-access-key: <api-key>' \
  --header 'cb-access-passphrase: <api-key>' \
  --header 'cb-access-sign: <api-key>' \
  --header 'cb-access-timestamp: <api-key>'
{
  "limit_currency": "USD",
  "transfer_limits": {
    "exchange_withdraw": {
      "MANA": {
        "max": "391282.23187385",
        "remaining": "391282.23187385",
        "period_in_days": 7
      },
      "ALGO": {
        "max": "59844.404548",
        "remaining": "59844.404548",
        "period_in_days": 7
      },
      "ATOM": {
        "max": "4624.277457",
        "remaining": "4624.277457",
        "period_in_days": 7
      },
      "KNC": {
        "max": "21584.28663933",
        "remaining": "21584.28663933",
        "period_in_days": 7
      }
    }
  }
}

This request returns information on your payment method transfer limits, as well as buy/sell limits per currency.

Authorizations

cb-access-key
string
header
required
cb-access-passphrase
string
header
required
cb-access-sign
string
header
required
cb-access-timestamp
string
header
required

Path Parameters

user_id
string
required

Response

200
application/json

The response is of type object.