⚠️Blast API (blastapi.io) ends Oct 31. Migrate to Dwellir and skip Alchemy's expensive compute units.
Switch Today →
Skip to main content

Transaction Simulate — Move REST API

Overview#

Simulate a signed or unsigned transaction to preview effects and gas.

Endpoint#

POST /v1/transactions/simulate

Movement-Specific Notes#

  • Use realistic parameters to improve accuracy.

Request#

Body Schema#

[{ "sender": "0x...", "payload": { "type": "entry_function_payload", "function": "..." } }]

Response#

Success Response (200)#

[{ "gas_used": "1234", "success": true, "vm_status": "Executed successfully" }]

Code Examples#

curl -X POST https://api-movement-mainnet.n.dwellir.com/YOUR_API_KEY/v1/transactions/simulate \
-H "Content-Type: application/json" \
-d '[{"sender":"0x...","payload":{}}]'