GET
/
api
/
v1
/
smart-accounts
/
{smart_account_address}
curl --request GET \
  --url https://developer-api.squads.so/api/v1/smart-accounts/{smart_account_address} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-squads-network: <x-squads-network>'
{
  "smart_account_address": "<string>",
  "signers": [
    {
      "address": "<string>",
      "permissions": [
        "CAN_INITIATE"
      ]
    }
  ],
  "threshold": 123,
  "admin_address": "<string>",
  "rent_collector": "<string>"
}

Get detailed information about a Smart Account, including its configuration, signers, and current settings.

Key Concepts

  • Account Configuration: View current signers and their permissions
  • Threshold Settings: Check the current signature threshold
  • Optional Settings: See configured time lock, rent collector, and config authority

Important Notes

  • The response includes all active signers and their current permissions
  • Time lock and other optional settings will be included if configured

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

Response

200
application/json
Smart account details retrieved successfully
smart_account_address
string
signers
object[]
threshold
integer
admin_address
string
rent_collector
string