Skip to main content
POST
/
wallets
Create a new wallet
curl --request POST \
  --url https://api.platform.dakota.xyz/wallets \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --header 'x-idempotency-key: <x-idempotency-key>' \
  --data '
{
  "signer_groups": [
    "<string>"
  ],
  "policies": [
    "<string>"
  ],
  "family": "evm",
  "name": "<string>",
  "customer_id": "1NFHrqBHb3cTfLVkFSGmHZqdDPi"
}
'
{
  "id": "1NFHrqBHb3cTfLVkFSGmHZqdDPi",
  "client_id": "1NFHrqBHb3cTfLVkFSGmHZqdDPi",
  "family": "evm",
  "address": "0x165cd37b4c644c2921454429e7f9358d18a45e14",
  "name": "My Wallet",
  "customer_id": "1NFHrqBHb3cTfLVkFSGmHZqdDPi"
}

Authorizations

x-api-key
string
header
required

Headers

x-idempotency-key
string<uuid>
required

Unique key to ensure request idempotency. If the same key is used within a certain time window, the original response will be returned instead of executing the request again.

Body

application/json

Request to create a new non-custodial wallet

signer_groups
string[]
required

Array of signer group ids to attach to the wallet.

policies
string[]
required

Array of policy ids to attach to the wallet.

family
enum<string>
required

Blockchain family for the crypto account.

Available options:
evm,
solana
Example:

"evm"

name
string
required

Name of the wallet

customer_id
string

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
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

Response

Wallet created successfully

Non-custodial wallet managed by Dakota Platform with a single address usable across networks within the same family.

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
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

client_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
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

family
enum<string>
required

Blockchain family for the crypto account.

Available options:
evm,
solana
Example:

"evm"

address
string
required

The wallet address, same across all networks within the same family

Example:

"0x165cd37b4c644c2921454429e7f9358d18a45e14"

name
string
required

The wallet name

Example:

"My Wallet"

customer_id
string

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
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"