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

Authorizations

lmts-api-key
string
header
required

Scoped API token with HMAC-SHA256 signing. Requires three headers: lmts-api-key (token ID), lmts-timestamp (ISO-8601), lmts-signature (Base64-encoded HMAC). See Authentication docs for details.

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..."