> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blockradar.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Withdraw Stablecoins API

> Send stablecoins from master wallets or child addresses.

The Withdraw API lets you send stablecoins programmatically from either a master wallet or a child address. Both paths support standard withdrawals and sign-only variants for self-custody workflows.

## What you can do

* Send a withdrawal from a master wallet or child address
* Estimate network fees before sending
* Use sign-only mode to sign transactions without broadcasting

## Sign-only vs standard

**Standard withdrawal** — Blockradar signs and broadcasts the transaction on your behalf.

**Sign-only withdrawal** — Blockradar returns a signed transaction payload that you broadcast yourself. Use this when you want to retain control of the broadcast step.

## Endpoints

| Method | Endpoint                                                         | Description                               |
| ------ | ---------------------------------------------------------------- | ----------------------------------------- |
| `POST` | `/wallets/{walletId}/withdraw`                                   | Withdraw from master wallet               |
| `POST` | `/wallets/{walletId}/withdraw/sign-only`                         | Sign-only withdrawal from master wallet   |
| `POST` | `/wallets/{walletId}/withdraw/network-fee`                       | Estimate fee for master wallet withdrawal |
| `POST` | `/wallets/{walletId}/addresses/{addressId}/withdraw`             | Withdraw from child address               |
| `POST` | `/wallets/{walletId}/addresses/{addressId}/withdraw/sign-only`   | Sign-only withdrawal from child address   |
| `POST` | `/wallets/{walletId}/addresses/{addressId}/withdraw/network-fee` | Estimate fee for child address withdrawal |

<Card title="Full API Reference" icon="book" href="/en/api-reference/withdraw/master-wallet">
  View all withdraw endpoints in the API Reference tab.
</Card>
