GET
/
loans
/
lending-overview
Get lending overview
curl --request GET \
  --url https://api.exchange.coinbase.com/loans/lending-overview \
  --header 'cb-access-key: <api-key>' \
  --header 'cb-access-passphrase: <api-key>' \
  --header 'cb-access-sign: <api-key>' \
  --header 'cb-access-timestamp: <api-key>'
{
  "overview": {
    "open_loan_value": "<string>",
    "collateral_value": "<string>",
    "collateralization_percentage": "<string>",
    "available_to_borrow": "<string>",
    "available_per_asset": {},
    "withdrawal_restricted": true,
    "credit_limit_value": "<string>",
    "available_credit_value": "<string>",
    "collateralization_percentage_open_only": "<string>",
    "pending_loan_value": "<string>",
    "initial_margin_percentage": "<string>",
    "minimum_margin_percentage": "<string>",
    "unlock_margin_percentage": "<string>"
  },
  "loans": [
    {
      "id": "<string>",
      "currency": "<string>",
      "principal_amount": "<string>",
      "outstanding_principal_amount": "<string>",
      "interest_rate": "<string>",
      "interest_currency": "<string>",
      "status": "loan_pending",
      "effective_at": "2023-11-07T05:31:56Z",
      "closed_at": "2023-11-07T05:31:56Z",
      "term_start_date": "2023-11-07T05:31:56Z",
      "term_end_date": "2023-11-07T05:31:56Z"
    }
  ]
}
Get lending overview returns all amounts in USD notional values, except available_per_asset mappings which are returned in both notional and native values.
Coinbase Exchange Loans ProgramSee Coinbase Exchange Loans Program for program details including qualification criteria and sample terms.
CautionThe lending rate limit is 10 RPS per profile.

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

Response

200
application/json

The response is of type object.