Skip to main content
GET
/
portfolio
/
trading
/
allowance
Get User Trading Allowance
curl --request GET \
  --url https://api.limitless.exchange/portfolio/trading/allowance \
  --header 'Authorization: Bearer <token>'
{
  "allowance": "1000000000000",
  "hasMinimumAllowance": true,
  "type": "clob",
  "spender": "0x...",
  "checkedAddress": "0x..."
}

Authorizations

Authorization
string
header
required

JWT token for API access (alternative to cookie auth)

Query Parameters

type
enum<string>
required

Trading type: CLOB or NegRisk

Available options:
clob,
negrisk
spender
string

Optional spender address override (e.g., venue exchange address)

Response

User allowance information

allowance
string
Example:

"1000000000000"

hasMinimumAllowance
boolean
Example:

true

type
enum<string>
Available options:
clob,
negrisk
Example:

"clob"

spender
string
Example:

"0x..."

checkedAddress
string
Example:

"0x..."