v1
latestOpenAPI 3.0.32026-07-1320201.0 MBBitcoin Wallets
Create a new wallet address
This method will create a new address. This decreases your used address metrics
post/api/v2/bitcoin/wallets/{wallet}/addresses
Headers
X-Network'testnet' | 'mainnet'
Specify "testnet" for test network or leave empty for main network. Defaults to "mainnet" if not provided.
Authorizationstring required
Bearer token for authorization. Required for authenticated endpoints.
Content-Type'application/json' | 'application/x-www-form-urlencoded' | 'multipart/form-data'
The MIME type of the request body.
Response
Address created
Example response
{
"status": 201,
"ok": true,
"message": "Address created",
"data": {
"address": "bc1qzq8m9ukvvgvj7kmlejnfr2q4ndmk2e4ndtr9rn"
}
}