API ReferenceGuidesChangelog
Move

Get Sui transaction call trace

Retrieves the detailed call trace for a Sui transaction

GET
/v1/move/sui_call_trace

Authorization

api-key<token>

In: header

Query Parameters

networkId?string
txDigest?string

Response Body

application/json

curl -X GET "https://example.com/v1/move/sui_call_trace"
{  "result": [    {      "calls": [        {}      ],      "contractName": "string",      "error": {        "codeOffset": 0,        "functionName": "string",        "location": {          "address": "string",          "name": "string"        },        "majorStatus": "string",        "message": "string",        "subStatus": "string"      },      "from": "string",      "functionName": "string",      "gasUsed": "string",      "inputs": [        null      ],      "location": null,      "pc": 0,      "returnValue": [        null      ],      "to": "string",      "typeArgs": [        "string"      ]    }  ]}