API Reference
Offramps
Simulate Address Deposit [POST]

Simulate Address Deposit

https://sandboxapi.bitnob.co/api/v1/payouts/simulate-address-deposit (opens in a new tab)


Body Parameters

ParameterTypeRequiredDescriptionAllowed Values
addressstringThe provided address in the finalized quote for the transaction-
amountnumberThe 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
  }
}