curl --request POST \
--url https://api.blockradar.co/v1/wallets/{id}/addresses/{addressId}/signing/transaction \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"transaction": "{\"to\":\"0x000000000000000000000000000000000000dEaD\",\"value\":\"0x5af3107a4000\",\"nonce\":4,\"chainId\":11155111,\"gasLimit\":\"0x5208\",\"maxFeePerGas\":\"0x59682f00\",\"maxPriorityFeePerGas\":\"0x3b9aca00\",\"type\":2}",
"reference": "eth-child-transfer-001",
"metadata": {
"source": "custom"
}
}
'{
"statusCode": 200,
"message": "Transaction signed successfully",
"data": {
"id": "02f404a5-d13e-4bcf-8ad5-c5f51c04fa49",
"reference": "eth-child-transfer-001",
"senderAddress": "0x82888b11790ddC1946e1AA650E0127b2E9023233",
"recipientAddress": "0x82888b11790ddC1946e1AA650E0127b2E9023233",
"hash": "0xac4c73ca084608ac6b981e54db948dc80c15b4ea3ffd0c9f5781f3af7ad6fe51",
"confirmed": true,
"status": "SUCCESS",
"type": "SIGNED",
"createdChannel": "api",
"reason": "Transaction signed",
"network": "testnet",
"chainId": 11155111,
"metadata": null,
"signedTransaction": "0x02f87383aa36a763843b9aca008459682f0082520894000000000000000000000000000000000000dead865af3107a400080c080a0b760...",
"amount": null,
"amountUSD": "0.00",
"fee": null,
"feeUSD": null,
"currency": "USD",
"createdAt": "2026-03-19T13:34:24.937Z",
"updatedAt": "2026-03-19T13:34:24.937Z",
"wallet": {
"id": "3f9aca5c-38ee-4e1d-ab67-c084a2e37bb2",
"name": "Ethereum Wallet",
"address": "0xC887a3Cb8E7AbA4A77D7275AD4B242f71cbd5446",
"isActive": true,
"status": "ACTIVE",
"network": "testnet"
},
"asset": null,
"blockchain": {
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"name": "ethereum",
"symbol": "eth",
"slug": "ethereum",
"isEvmCompatible": true,
"tokenStandard": "ERC20"
},
"beneficiary": null
}
}Sign a raw unsigned transaction with a child address private key. The transaction must be built with the child address as the sender/payer. Supports EVM, Tron, and Solana.
curl --request POST \
--url https://api.blockradar.co/v1/wallets/{id}/addresses/{addressId}/signing/transaction \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"transaction": "{\"to\":\"0x000000000000000000000000000000000000dEaD\",\"value\":\"0x5af3107a4000\",\"nonce\":4,\"chainId\":11155111,\"gasLimit\":\"0x5208\",\"maxFeePerGas\":\"0x59682f00\",\"maxPriorityFeePerGas\":\"0x3b9aca00\",\"type\":2}",
"reference": "eth-child-transfer-001",
"metadata": {
"source": "custom"
}
}
'{
"statusCode": 200,
"message": "Transaction signed successfully",
"data": {
"id": "02f404a5-d13e-4bcf-8ad5-c5f51c04fa49",
"reference": "eth-child-transfer-001",
"senderAddress": "0x82888b11790ddC1946e1AA650E0127b2E9023233",
"recipientAddress": "0x82888b11790ddC1946e1AA650E0127b2E9023233",
"hash": "0xac4c73ca084608ac6b981e54db948dc80c15b4ea3ffd0c9f5781f3af7ad6fe51",
"confirmed": true,
"status": "SUCCESS",
"type": "SIGNED",
"createdChannel": "api",
"reason": "Transaction signed",
"network": "testnet",
"chainId": 11155111,
"metadata": null,
"signedTransaction": "0x02f87383aa36a763843b9aca008459682f0082520894000000000000000000000000000000000000dead865af3107a400080c080a0b760...",
"amount": null,
"amountUSD": "0.00",
"fee": null,
"feeUSD": null,
"currency": "USD",
"createdAt": "2026-03-19T13:34:24.937Z",
"updatedAt": "2026-03-19T13:34:24.937Z",
"wallet": {
"id": "3f9aca5c-38ee-4e1d-ab67-c084a2e37bb2",
"name": "Ethereum Wallet",
"address": "0xC887a3Cb8E7AbA4A77D7275AD4B242f71cbd5446",
"isActive": true,
"status": "ACTIVE",
"network": "testnet"
},
"asset": null,
"blockchain": {
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"name": "ethereum",
"symbol": "eth",
"slug": "ethereum",
"isEvmCompatible": true,
"tokenStandard": "ERC20"
},
"beneficiary": null
}
}"YOUR_WALLET_ID"
"ADDRESS_OR_ID"
The serialized unsigned transaction. Base64 for Solana, JSON string for EVM and Tron.
"{\"to\":\"0x000000000000000000000000000000000000dEaD\",\"value\":\"0x5af3107a4000\",\"nonce\":4,\"chainId\":11155111,\"gasLimit\":\"0x5208\",\"maxFeePerGas\":\"0x59682f00\",\"maxPriorityFeePerGas\":\"0x3b9aca00\",\"type\":2}"
Your internal tracking ID.
"eth-child-transfer-001"
Custom key-value pairs stored with the transaction record.
{ "source": "custom" }