curl --request POST \
--url https://staging.apimonaco.xyz/api/v1/withdrawals \
--header 'Content-Type: application/json' \
--header 'X-Monaco-Signature: <api-key>' \
--data '
{
"assetId": "123e4567-e89b-12d3-a456-426614174000",
"amount": "1000000000000000000",
"destination": "0x742d35cc6634c0532925a3b8d4060f31e2c3d8b5",
"source": "spot"
}
'import requests
url = "https://staging.apimonaco.xyz/api/v1/withdrawals"
payload = {
"assetId": "123e4567-e89b-12d3-a456-426614174000",
"amount": "1000000000000000000",
"destination": "0x742d35cc6634c0532925a3b8d4060f31e2c3d8b5",
"source": "spot"
}
headers = {
"X-Monaco-Signature": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-Monaco-Signature': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
assetId: '123e4567-e89b-12d3-a456-426614174000',
amount: '1000000000000000000',
destination: '0x742d35cc6634c0532925a3b8d4060f31e2c3d8b5',
source: 'spot'
})
};
fetch('https://staging.apimonaco.xyz/api/v1/withdrawals', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://staging.apimonaco.xyz/api/v1/withdrawals",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'assetId' => '123e4567-e89b-12d3-a456-426614174000',
'amount' => '1000000000000000000',
'destination' => '0x742d35cc6634c0532925a3b8d4060f31e2c3d8b5',
'source' => 'spot'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Monaco-Signature: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://staging.apimonaco.xyz/api/v1/withdrawals"
payload := strings.NewReader("{\n \"assetId\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"amount\": \"1000000000000000000\",\n \"destination\": \"0x742d35cc6634c0532925a3b8d4060f31e2c3d8b5\",\n \"source\": \"spot\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Monaco-Signature", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://staging.apimonaco.xyz/api/v1/withdrawals")
.header("X-Monaco-Signature", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"assetId\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"amount\": \"1000000000000000000\",\n \"destination\": \"0x742d35cc6634c0532925a3b8d4060f31e2c3d8b5\",\n \"source\": \"spot\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://staging.apimonaco.xyz/api/v1/withdrawals")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Monaco-Signature"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"assetId\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"amount\": \"1000000000000000000\",\n \"destination\": \"0x742d35cc6634c0532925a3b8d4060f31e2c3d8b5\",\n \"source\": \"spot\"\n}"
response = http.request(request)
puts response.read_body{
"withdrawalIndex": "42",
"vaultAddress": "0x5fbdb2315678afecb367f032d93f642f64180aa3",
"calldata": "<string>"
}Initiate withdrawal
Initiate a withdrawal.
Master accounts with the withdraw permission only. Routes through the
matching engine to debit the balance and allocate a withdrawal_index,
then returns it plus the target vault address. The calldata field is
empty: executeWithdrawal requires the merkle proof, which only exists
after the withdrawal’s root is confirmed on-chain. Poll GetWithdrawal to
obtain the calldata once it is ready.
curl --request POST \
--url https://staging.apimonaco.xyz/api/v1/withdrawals \
--header 'Content-Type: application/json' \
--header 'X-Monaco-Signature: <api-key>' \
--data '
{
"assetId": "123e4567-e89b-12d3-a456-426614174000",
"amount": "1000000000000000000",
"destination": "0x742d35cc6634c0532925a3b8d4060f31e2c3d8b5",
"source": "spot"
}
'import requests
url = "https://staging.apimonaco.xyz/api/v1/withdrawals"
payload = {
"assetId": "123e4567-e89b-12d3-a456-426614174000",
"amount": "1000000000000000000",
"destination": "0x742d35cc6634c0532925a3b8d4060f31e2c3d8b5",
"source": "spot"
}
headers = {
"X-Monaco-Signature": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-Monaco-Signature': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
assetId: '123e4567-e89b-12d3-a456-426614174000',
amount: '1000000000000000000',
destination: '0x742d35cc6634c0532925a3b8d4060f31e2c3d8b5',
source: 'spot'
})
};
fetch('https://staging.apimonaco.xyz/api/v1/withdrawals', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://staging.apimonaco.xyz/api/v1/withdrawals",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'assetId' => '123e4567-e89b-12d3-a456-426614174000',
'amount' => '1000000000000000000',
'destination' => '0x742d35cc6634c0532925a3b8d4060f31e2c3d8b5',
'source' => 'spot'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Monaco-Signature: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://staging.apimonaco.xyz/api/v1/withdrawals"
payload := strings.NewReader("{\n \"assetId\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"amount\": \"1000000000000000000\",\n \"destination\": \"0x742d35cc6634c0532925a3b8d4060f31e2c3d8b5\",\n \"source\": \"spot\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Monaco-Signature", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://staging.apimonaco.xyz/api/v1/withdrawals")
.header("X-Monaco-Signature", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"assetId\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"amount\": \"1000000000000000000\",\n \"destination\": \"0x742d35cc6634c0532925a3b8d4060f31e2c3d8b5\",\n \"source\": \"spot\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://staging.apimonaco.xyz/api/v1/withdrawals")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Monaco-Signature"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"assetId\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"amount\": \"1000000000000000000\",\n \"destination\": \"0x742d35cc6634c0532925a3b8d4060f31e2c3d8b5\",\n \"source\": \"spot\"\n}"
response = http.request(request)
puts response.read_body{
"withdrawalIndex": "42",
"vaultAddress": "0x5fbdb2315678afecb367f032d93f642f64180aa3",
"calldata": "<string>"
}Authorizations
Ed25519 session-key request signing. Every authenticated request carries three headers: X-Monaco-PublicKey (64-char lowercase-hex session public key), X-Monaco-Timestamp (Unix milliseconds, within 30s of server time), and X-Monaco-Signature (hex ed25519 signature). The signature is over METHOD\npath?query\ntimestamp_ms\nSHA256_hex(body), where the body hash is the SHA-256 of the empty byte string when there is no body. Obtain the session keypair from POST /api/v1/auth/challenge followed by POST /api/v1/auth/verify.
Body
UUID of the asset to withdraw
"123e4567-e89b-12d3-a456-426614174000"
Raw token amount in the smallest unit (e.g. wei) as a stringified positive integer
"1000000000000000000"
On-chain address that will receive the withdrawal (EVM, 42 chars including 0x)
"0x742d35cc6634c0532925a3b8d4060f31e2c3d8b5"
Source ledger to withdraw from: "spot" (default) debits spot balance; "margin" directly debits withdrawable collateral from the parent margin account
"spot"
Response
OK
Allocated withdrawal index — matches executeWithdrawal.index on-chain
"42"
0x-prefixed lowercase address of the vault contract the calldata is submitted to
"0x5fbdb2315678afecb367f032d93f642f64180aa3"
0x-prefixed ABI-encoded executeWithdrawal(...) calldata; submit as tx.data to the vault. Empty on InitiateWithdrawal (the merkle proof is not available until the withdrawal root is confirmed on-chain) — fetch it from GetWithdrawal once ready
Was this page helpful?

