Skip to main content
GET
/
policies
/
{policy_id}
/
wallets
Get wallets attached to a policy
curl --request GET \
  --url https://api.platform.dakota.xyz/policies/{policy_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

policy_id
string
required

Policy ID

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"