Virtual Environments
Get Environment Instance Transactions
Get transactions across all Virtual Environments in an environment instance, with pagination and optional filters by status, category, kind, from/to address.
get/public/v1/account/{accountSlug}/project/{projectSlug}/environments/{environmentId}/instance/{instanceId}/transactions
Path parameters
accountSlugstring required
Account ID or slug
projectSlugstring required
Project ID or slug
environmentIdstring uuid required
Environment ID
instanceIdstring uuid required
Environment instance ID
Query parameters
vnet_idsstring[]
Filter transactions by Virtual Environment IDs (comma separated)
statusstring[]
Transaction statuses to filter by (comma separated)
categorystring[]
Transaction categories to filter by (comma separated)
kindstring[]
Transaction kinds to filter by (comma separated)
fromstring[]
Filter by sender addresses (comma separated)
tostring[]
Filter by recipient addresses (comma separated)
pageinteger
Page number for pagination
per_pageinteger
Number of transactions to return per page
Response
A successful response.
Example response
[
{
"id": "a3235752-0f5a-4d32-8e43-e7629a9f7462",
"vnet_id": "d6cf4c06-24c3-4841-9a85-e77ed341d8e2",
"origin": "rpc",
"category": "write",
"kind": "cheatcode",
"status": "success",
"error_reason": null,
"reverted": false,
"rpc_method": "hardhat_mine",
"created_at": "2024-04-19T12:21:48.373698Z",
"dashboard_url": "https://dashboard.tenderly.co/transactions/a3235752-0f5a-4d32-8e43-e7629a9f7462",
"block_number": "0x12c5113",
"block_hash": "0xe28d8b295d236f85db34dc12982f5235e361101a26cf35f4be798fb000997194",
"tx_hash": "0x0288ab91522c19cd1589eb73b86f4b874c52ed39cdce1ba7cef790f314c4523f",
"tx_index": "0x0",
"from": "0xfa78a211f7df670338daed1f96177c9fe154fcb1",
"to": "0x6c8b8870c415f3b2d5fe0cd61e9c6960bad8e0c9",
"input": "0x071e9503000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a",
"nonce": "0x15",
"value": "0x0",
"gas": "0xc0dec0de",
"gas_price": "0x0",
"max_priority_fee_per_gas": "0x0",
"max_fee_per_gas": "0x0",
"type": "0x0",
"function_name": "mint"
}
]