Skip to main content
GET
/
margin
/
notional_risk_limit
Get Notional Risk Limit
curl --request GET \
  --url https://external-api.kalshi.com/trade-api/v2/margin/notional_risk_limit \
  --header 'KALSHI-ACCESS-KEY: <api-key>' \
  --header 'KALSHI-ACCESS-SIGNATURE: <api-key>' \
  --header 'KALSHI-ACCESS-TIMESTAMP: <api-key>'
{
  "default_notional_value_risk_limit": "5000.0000",
  "notional_value_risk_limits_by_market_ticker": {
    "market-abc-123": "5000.0000"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.kalshi.com/llms.txt

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

Authorizations

KALSHI-ACCESS-KEY
string
header
required

Your API key ID

KALSHI-ACCESS-SIGNATURE
string
header
required

RSA-PSS signature of the request

KALSHI-ACCESS-TIMESTAMP
string
header
required

Request timestamp in milliseconds

Response

Notional risk limit retrieved successfully

default_notional_value_risk_limit
string
required

The notional value risk limit for the user as a fixed-point dollar string with 4 decimal places (e.g., "5000.0000")

Example:

"5000.0000"

notional_value_risk_limits_by_market_ticker
object
required

Map of market_ticker to notional value risk limit as a fixed-point dollar string with 4 decimal places (e.g., "5000.0000"). If present, the market-level risk limit overrides the default notional value risk limit.

Example:
{ "market-abc-123": "5000.0000" }