Skip to main content
POST
/
wallet-infra
/
master-wallets
Provision a managed master wallet
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: JSON.stringify({
    name: 'Primary wallet',
    chain: 'base',
    supportedTokens: ['USDC'],
    network: 'mainnet'
  })
};

fetch('https://api.prudra.dev/wallet-infra/master-wallets', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "id": "mwt_abc123",
  "address": "0x742d35Cc...",
  "chain": "base",
  "chainId": 8453,
  "network": "mainnet",
  "provisionStatus": "active",
  "supportedTokens": [
    "USDC"
  ],
  "keyVersion": "v1_1746000000000",
  "createdAt": "2023-11-07T05:31:56Z"
}

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

Body

application/json
name
string
required
Example:

"Primary wallet"

chain
enum<string>
required
Available options:
base,
ethereum,
optimism,
arbitrum,
polygon,
tempo,
base-sepolia,
eth-sepolia,
tempo-moderato
supportedTokens
string[]
required
Example:
["USDC"]
network
enum<string>
default:mainnet
Available options:
mainnet,
testnet

Response

Wallet provisioned

id
string
required
Example:

"mwt_abc123"

address
string
required
Example:

"0x742d35Cc..."

chain
string
required
Example:

"base"

chainId
integer
required
Example:

8453

network
string
required
Example:

"mainnet"

provisionStatus
string
required
Example:

"active"

supportedTokens
string[]
required
Example:
["USDC"]
keyVersion
string
Example:

"v1_1746000000000"

createdAt
string<date-time>