curl --request POST \
--url https://api.example.com/api/v1/wallet/{id}/withdraw \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"to": "<string>",
"amount": 123,
"gasPrice": "<string>",
"gasLimit": 123,
"gasTip": "\"\""
}
'[
{
"key": "<string>",
"value": "<unknown>"
}
]curl --request POST \
--url https://api.example.com/api/v1/wallet/{id}/withdraw \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"to": "<string>",
"amount": 123,
"gasPrice": "<string>",
"gasLimit": 123,
"gasTip": "\"\""
}
'[
{
"key": "<string>",
"value": "<unknown>"
}
]Documentation Index
Fetch the complete documentation index at: https://docs.extractor.live/llms.txt
Use this file to discover all available pages before exploring further.
Authentication
The direct address of the wallet
Amount of withdraw
Gas price for action execution. Possible values are 100%/1.0 gwei/1000000/'market'. Default: market
^(\d+(\.\d+)? gwei|\d+(\.\d+)?%|market)$Gas limit for action execution. Default: 10000000
Gas tip for action execution. Possible values are 100%/1.0 gwei/1000000. Default: ""
^(\d+(\.\d+)?|\d+(\.\d+)? gwei|\+?\-?\d+(\.\d+)?%)$|^$"\"\""