Skip to main content
POST
/
wallet-infra
/
master-wallets
/
{id}
/
child-addresses
Derive a child address
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: JSON.stringify({name: '<string>', metadata: {}})
};

fetch('https://api.prudra.dev/wallet-infra/master-wallets/{id}/child-addresses', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "id": "cad_xyz789",
  "address": "0x...",
  "derivationPath": "m/44'/60'/0'/0/1",
  "masterWalletId": "mwt_abc123",
  "name": "Customer A"
}

Documentation Index

Fetch the complete documentation index at: https://docs.prudra.dev/llms.txt

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

Authorizations

Authorization
string
header
required

Your Prudra API key. Get one at dashboard.prudra.com/settings/api-keys

Path Parameters

id
string
required

Body

application/json
name
string
metadata
object

Response

201 - application/json

Child address derived

id
string
required
Example:

"cad_xyz789"

address
string
required
Example:

"0x..."

derivationPath
string
required
Example:

"m/44'/60'/0'/0/1"

masterWalletId
string
required
Example:

"mwt_abc123"

name
string
Example:

"Customer A"