Skip to main content
POST
/
sandbox
/
blockchain
/
simulate
Simulate blockchain event
curl --request POST \
  --url https://api.platform.dakota.xyz/sandbox/blockchain/simulate \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "event_type": "transfer",
  "tx_hash": "<string>",
  "from": "<string>",
  "to": "<string>",
  "amount": "<string>",
  "asset": "<string>",
  "network": "<string>",
  "confirmations": 123
}
'
{
  "message": "Blockchain event transfer simulated"
}

Authorizations

x-api-key
string
header
required

Body

application/json
event_type
enum<string>
required

Type of blockchain event

Available options:
transfer,
confirmation
tx_hash
string

Transaction hash (for confirmation events)

from
string

Source address (for transfer events)

to
string

Destination address (for transfer events)

amount
string

Transfer amount

asset
string

Asset being transferred

network
string

Blockchain network

confirmations
integer

Number of confirmations (for confirmation events)

Response

Blockchain event simulated successfully

message
string
Example:

"Blockchain event transfer simulated"