---
title: "Child Address Sign-Only"
method: POST
path: "/v1/wallets/{walletId}/addresses/{addressId}/withdraw/sign"
tags: ["Withdraw"]
---

# Child Address Sign-Only

`POST /v1/wallets/{walletId}/addresses/{addressId}/withdraw/sign`

This endpoint allows you to initiate a withdrawal from a specific address without broadcasting

### Body Parameters

| Key | Required | Type | Description |
| --- | --- | --- | --- |
| assetId | true\* | string (UUID) | The ID of the asset to withdraw. Required if `assets` array is **not** provided. |
| address | true\* | string | The destination wallet address for the withdrawal. Required if `assets` array is **not** provided. |
| amount | true\* | string | The withdrawal amount. Must be greater than 0. Required if `assets` array is **not** provided. |
| reference | false | string | An optional reference note for the withdrawal. |
| **note** | false | string | A short message or internal remark to associate with this withdrawal. Not visible on-chain. |
| metadata | false | object | Optional metadata (key-value pairs) for additional transaction details. |
| assets | false | array of `Asset` | Used for **batch withdrawals**. Required if `assetId`, `amount`, and `address` are **not** provided. |

---

### Asset (for Batch Withdrawals)

| Key | Required | Type | Description |
| --- | --- | --- | --- |
| id | true | string (UUID) | The ID of the asset to withdraw. |
| amount | true | string | The withdrawal amount. Must be greater than 0. |
| address | true | string | The destination wallet address for the withdrawal. |
| reference | false | string | Optional reference note for this asset withdrawal. |
| **note** | false | string | A short message or internal remark for this asset withdrawal. Not visible on-chain. |
| metadata | false | object | Optional metadata (key-value pairs) for this asset withdrawal. |

---

### Notes

- **Single withdrawal**: Provide `assetId`, `amount`, and `address` at the top level.
- **Batch withdrawal**: Omit top-level `assetId`, `amount`, and `address`, and instead provide an array of `assets` (each following `Asset`).

## Request body

- object
  - `assets` object[]
    - `address` string
    - `amount` string
    - `id` string
    - `reference` string

## Response `200`

Withdraw / Withdraw (Batch)

- object
  - `data` object
    - `amlScreening` object
      - `message` string
      - `provider` string
      - `status` string
    - `amount` string
    - `amountPaid` string
    - `amountUSD` string
    - `asset` object
      - `address` string
      - `createdAt` string
      - `currency` string
      - `decimals` number
      - `id` string
      - `isActive` boolean
      - `isNative` boolean
      - `name` string
      - `network` string
      - `standard` string
      - `symbol` string
      - `updatedAt` string
    - `assetSwept` unknown
    - `assetSweptAmount` unknown
    - `assetSweptAt` unknown
    - `assetSweptGasFee` unknown
    - `assetSweptHash` unknown
    - `assetSweptRecipientAddress` unknown
    - `assetSweptSenderAddress` unknown
    - `blockHash` unknown
    - `blockNumber` unknown
    - `blockchain` object
      - `createdAt` string
      - `derivationPath` string
      - `id` string
      - `isActive` boolean
      - `isEvmCompatible` boolean
      - `isL2` boolean
      - `name` string
      - `slug` string
      - `symbol` string
      - `tokenStandard` string
      - `updatedAt` string
    - `chainId` unknown
    - `confirmations` unknown
    - `confirmed` boolean
    - `createdAt` string
    - `currency` string
    - `errors` unknown[]
      - unknown
    - `fee` unknown
    - `feeHash` unknown
    - `gasFee` unknown
    - `gasPrice` unknown
    - `gasUsed` unknown
    - `hash` string
    - `id` string
    - `metadata` unknown
    - `network` string
    - `note` unknown
    - `rate` unknown
    - `rateUSD` string
    - `reason` unknown
    - `recipientAddress` string
    - `reference` string
    - `senderAddress` string
    - `signedTransaction` string
    - `status` string
    - `success` object[]
      - `hash` string
      - `id` string
      - `signedTransaction` string
    - `toAmount` unknown
    - `toCurrency` unknown
    - `tokenAddress` string
    - `type` string
    - `updatedAt` string
    - `wallet` object
      - `address` string
      - `configurations` object
        - `autoSweeping` object
          - `isActive` boolean
          - `threshold` number
        - `withdrawal` object
          - `gasless` object
            - `isActive` boolean
            - `operator` string
            - `threshold` number
      - `createdAt` string
      - `derivationPath` string
      - `description` string
      - `id` string
      - `isActive` boolean
      - `name` string
      - `network` string
      - `status` string
      - `updatedAt` string
  - `message` string
  - `statusCode` number

---

[API](https://skmtc.net/blockradar/apis/blockradar-documentation.md) · [All operations](https://skmtc.net/blockradar/apis/blockradar-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/blockradar/blockradar-documentation/revisions/97f95b4cfc0d/schema)
