Accounts

List Accounts

Lists accounts visible to the credential. User tokens return the user's business accounts; business account API keys return the requesting business account and its connected accounts.

get/accounts

Query parameters

firstinteger

The number of accounts to return (default 10, max 50).

afterstring

A cursor; returns accounts after this position.

lastinteger

The number of accounts to return from the end of the range.

beforestring

A cursor; returns accounts before this position.

order'created_at'

The field to sort accounts by.

direction'asc' | 'desc'

Sort direction.

Response

accounts listed

Example response

{
  "data": [
    {
      "capabilities": {
        "accept_bank_payments": "active",
        "accept_bnpl_payments": "active",
        "accept_card_payments": "active",
        "bank_deposit": "active",
        "card_deposit": "active",
        "card_issuing": "active",
        "crypto_deposit": "active",
        "crypto_payout": "active",
        "instant_payout": "active",
        "run_ads": "active",
        "standard_payout": "active",
        "transfer": "active"
      },
      "cards": {
        "kind": "individual"
      },
      "company_formation": {
        "signatures": {
          "form8821": {
            "status": "pending"
          },
          "ss4": {
            "status": "pending"
          }
        }
      },
      "recommended_actions": [
        {
          "action": "theme_business",
          "status": "optional"
        }
      ],
      "required_actions": [
        {
          "action": "deposit_funds",
          "status": "required"
        }
      ],
      "social_links": [
        {
          "website": "x"
        }
      ],
      "wallet": {
        "network": "solana"
      }
    }
  ]
}

Changes