GET
/
api
/
v1
/
smart-accounts
/
{smart_account_address}
/
spending-limits
/
{spending_limit_address}
curl --request GET \
  --url https://developer-api.squads.so/api/v1/smart-accounts/{smart_account_address}/spending-limits/{spending_limit_address} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-squads-network: <x-squads-network>'
{
  "spending_limit": {
    "address": "<string>",
    "token_address": "<string>",
    "amount": "<string>",
    "remaining_amount": "<string>",
    "last_reset": 123,
    "period": "ONE_TIME",
    "spending_limit_signers": [
      "<string>"
    ],
    "destinations": [
      "<string>"
    ],
    "expiration": 123
  }
}

Retrieve detailed information about a specific spending limit, including its current status and usage.

Key Concepts

  • Limit Details: View configured amount and period
  • Current Status: Check remaining amount and time until reset
  • Token Information: See associated token mint address

Important Notes

  • Remaining amount updates with each use
  • Reset time indicates when the limit will refresh
  • Returns 404 if the spending limit doesn’t exist

Authorizations

Authorization
string
header
required

UUID-based API key provided by Squads

Headers

x-squads-network
enum<string>
required

Specifies the network for the API request

Available options:
mainnet,
devnet

Path Parameters

smart_account_address
string
required

The address of the smart account

spending_limit_address
string
required

The address of the spending limit

Response

200
application/json
Spending limit retrieved successfully
spending_limit
object