Skip to main content
GET
/
accounts
/
{accountId}
/
wallets
/
{walletId}
/
allowances
Get wallet token allowances
curl --request GET \
  --url https://api.venlyfinance.com/v1/accounts/{accountId}/wallets/{walletId}/allowances \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "result": [
    {
      "asset": {
        "name": "USDC",
        "contractAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
        "decimals": 6
      },
      "allowance": "100.000000",
      "orchestrationWallet": "0x5B38Da6a701c568545dCfcB03FcB875f56beddC4"
    }
  ]
}
Returns the token allowances granted to the orchestration wallet. Filter by asset. Amounts are decimal strings; a uint256-max value indicates an unlimited allowance.

Authorizations

Path Parameters

accountId
string<uuid>
required

Unique account identifier

walletId
string<uuid>
required

Unique wallet identifier

Query Parameters

asset
string

Filter by a specific asset (e.g. USDC)

Response

List of token allowances

success
boolean

Indicates whether the request was successful

result
object[]