Simulate Address Deposit
https://sandboxapi.bitnob.co/api/v1/payouts/simulate-address-deposit (opens in a new tab)
Body Parameters
| Parameter | Type | Required | Description | Allowed Values |
|---|---|---|---|---|
| address | string | ✅ | The provided address in the finalized quote for the transaction | - |
| amount | number | ✅ | The amount to be sent, as specified in the finalized quote | - |
Request
Offramps/Finalize Quote [POST]
curl --location 'https://sandboxapi.bitnob.co/api/v1/payouts/simulate-address-deposit' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer API-KEY' \
--data '{
"address": "TS8bXUyq2QdyYceKVxcvJpHQ6NX6qY2xaZ",
"amount": 200
}'Responses
🟢 200 - Result example
{
"status": true,
"message": "OffRamp simulate address deposit successfully",
"data": {
"success": true
}
}