Skip to main content
GET
/
signer-groups
/
{signer_group_id}
/
wallets
Get wallets attached to a signer group
curl --request GET \
  --url https://api.platform.dakota.xyz/signer-groups/{signer_group_id}/wallets \
  --header 'x-api-key: <api-key>'
[
  {
    "id": "1NFHrqBHb3cTfLVkFSGmHZqdDPi",
    "name": "Treasury Wallet",
    "family": "evm"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.dakota.xyz/llms.txt

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

Authorizations

x-api-key
string
header
required

Path Parameters

signer_group_id
string
required

Signer group ID KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.

Required string length: 27
Pattern: ^[0-9A-Za-z]{27}$
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

Response

Attached wallets retrieved successfully

id
string
required

KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.

Required string length: 27
Pattern: ^[0-9A-Za-z]{27}$
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

name
string
required

Wallet name.

Example:

"Treasury Wallet"

family
enum<string>
required

Blockchain family for the crypto account.

Available options:
evm,
solana
Example:

"evm"