Skip to main content
GET
/
api
/
v2
/
minikit
/
transaction
/
debug
Get Transaction Debug URL
curl --request GET \
  --url https://developer.world.org/api/v2/minikit/transaction/debug
const options = {method: 'GET'};

fetch('https://developer.world.org/api/v2/minikit/transaction/debug', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
{
  "transactions": [
    {
      "debugUrl": "https://dashboard.tenderly.co/tx/...",
      "createdAt": "2024-03-21T10:30:00.000Z",
      "block": 12345678,
      "simulationRequestId": "sim_abc123def456",
      "simulationError": "Permit signature expired",
      "walletAddress": "0x1234..."
    }
  ]
}

Query Parameters

app_id
string
required

The app_id corresponding to the transaction that is being queried.

Response

200 - application/json

Debug information list

transactions
object[]