Skip to main content
GET
/
wallet-infra
/
master-wallets
/
{id}
Get a managed wallet
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.prudra.dev/wallet-infra/master-wallets/{id}', 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

Path Parameters

id
string
required

Response

Wallet found

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>