Skip to main content
POST
/
wallets
Provision receiving wallet (legacy)
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: JSON.stringify({coin: 'USDC_E'})
};

fetch('https://api.prudra.dev/wallets', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{}

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
coin
enum<string>
default:USDC_E
Available options:
USDC_E,
USDC,
USDT

Response

201 - application/json

Wallet provisioned or returned

The response is of type object.