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

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

Response

200 - application/json

List of managed wallets

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>