Skip to main content
GET
/
wallets
/
me
/
policy
curl https://api.useknot.xyz/wallets/me/policy \
  -H "Authorization: Bearer <token>"
{
  "status": true,
  "data": {
    "policy": {
      "maxSingleTransactionInUsd": 100,
      "dailyLimitInUsd": 500,
      "allowedRecipients": [],
      "allowTrading": true,
      "allowLiquidityProvision": true,
      "allowPredictionMarkets": true,
      "sessionExpirationHours": 168
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.useknot.xyz/llms.txt

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

Returns the agent’s current policy configuration, including spending limits, allowed recipients, and feature permissions.
Requires authentication via Bearer token.

Response

status
boolean
true when the request succeeds.
data
object

Errors

StatusDescription
401Missing or invalid Bearer token
429Rate limit exceeded
curl https://api.useknot.xyz/wallets/me/policy \
  -H "Authorization: Bearer <token>"
{
  "status": true,
  "data": {
    "policy": {
      "maxSingleTransactionInUsd": 100,
      "dailyLimitInUsd": 500,
      "allowedRecipients": [],
      "allowTrading": true,
      "allowLiquidityProvision": true,
      "allowPredictionMarkets": true,
      "sessionExpirationHours": 168
    }
  }
}