Skip to main content
POST
/
private
/
CreditLines
Get Credit Lines
curl --request POST \
  --url https://api.kraken.com/0/private/CreditLines \
  --header 'API-Key: <api-key>' \
  --header 'API-Sign: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "nonce": 123,
  "rebase_multiplier": "rebased"
}
'
{
  "error": [],
  "result": {
    "asset_details": {
      "USD": {
        "balance": "1000.5000",
        "credit_limit": "50000.0000",
        "credit_used": "12500.0000",
        "available_credit": "37500.0000"
      },
      "EUR": {
        "balance": "500.2500",
        "credit_limit": "25000.0000",
        "credit_used": "5000.0000",
        "available_credit": "20000.0000"
      }
    },
    "limits_monitor": {
      "total_credit_usd": "100000.0000",
      "total_credit_used_usd": "25000.0000",
      "total_collateral_value_usd": "150000.0000",
      "equity_usd": "125000.0000",
      "ongoing_balance": "1.5000",
      "debt_to_equity": "0.2000"
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://kraken-sandbox.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

API-Key
string
header
required

The "API-Key" header should contain your API key.

API-Sign
string
header
required

Authenticated requests should be signed with the "API-Sign" header, using a signature generated with your private key, nonce, encoded payload, and URI path.

Body

application/json
nonce
integer<int64>
required

Nonce used in construction of API-Sign header

rebase_multiplier
enum<string> | null
default:rebased

Optional parameter for viewing xstocks data.

  • rebased: Display in terms of underlying equity.
  • base: Display in terms of SPV tokens.
Available options:
rebased,
base

Response

200 - application/json

Credit line details retrieved.

result
CreditLines · object

Credit Line Details

error
string[]

Kraken API error