Skip to main content
GET
/
wallets
/
{wallet_id}
Get a single wallet
curl --request GET \
  --url https://api.platform.dakota.xyz/wallets/{wallet_id} \
  --header 'x-api-key: <api-key>'
{
  "id": "1NFHrqBHb3cTfLVkFSGmHZqdDPi",
  "client_id": "1NFHrqBHb3cTfLVkFSGmHZqdDPi",
  "customer_id": "1NFHrqBHb3cTfLVkFSGmHZqdDPi",
  "customer_name": "Acme Capital LP",
  "family": "evm",
  "address": "0x165cd37b4c644c2921454429e7f9358d18a45e14",
  "name": "My Wallet",
  "created_at": 1731556800
}

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

wallet_id
string
required

Wallet 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

Wallet retrieved 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
Pattern: ^[0-9A-Za-z]{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
Pattern: ^[0-9A-Za-z]{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
Pattern: ^[0-9A-Za-z]{27}$
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

customer_name
string | null

Customer name joined server-side. Populated on GET responses; omitted from create responses.

created_at
integer

Created-at unix timestamp. Populated on GET responses.