Skip to main content
GET
/
api
/
grid
/
v1
/
accounts
/
{address}
cURL
curl --request GET \
  --url https://grid.squads.xyz/api/grid/v1/accounts/{address} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-grid-environment: <x-grid-environment>'
{
  "data": {
    "address": "<string>",
    "grid_user_id": "<string>",
    "status": "<string>",
    "policies": {
      "signers": [
        {
          "address": "<string>",
          "permissions": [
            "CAN_INITIATE"
          ],
          "role": "primary",
          "provider": "privy"
        }
      ],
      "threshold": 1,
      "admin_address": "<string>",
      "time_lock": 1
    },
    "settings_address": "<string>"
  },
  "metadata": {
    "request_id": "<string>",
    "timestamp": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.squads.so/llms.txt

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

Authorizations

Authorization
string
header
required

Your Grid API key from the Grid Dashboard

Headers

x-grid-environment
string
required

Solana network environment (sandbox, devnet, mainnet)

Path Parameters

address
string
required

Smart account address (Solana public key)

Response

Smart account details retrieved successfully

data
object
required

Response payload matching verify_otp structure (minus authentication field)

metadata
object
required