Get transactions by specified filters.
Successful Response
const response = await fetch('https://ton-index.nownodes.io/transactions', {
method: 'GET',
headers: {},
});
const data = await response.json();
{
"transactions": [
{
"account": "text",
"hash": "text",
"lt": "text",
"now": 0,
"orig_status": "uninit",
"end_status": "uninit",
"total_fees": "text",
"prev_trans_hash": "text",
"prev_trans_lt": "text",
"block_ref": {
"workchain": 0,
"shard": "text",
"seqno": 0
},
"in_msg": {
"hash": "text",
"source": "text",
"destination": "text",
"value": "text",
"fwd_fee": "text",
"ihr_fee": "text",
"created_lt": "text",
"created_at": "text",
"opcode": "text",
"ihr_disabled": false,
"bounce": false,
"bounced": false,
"import_fee": "text",
"message_content": {
"hash": "text",
"body": "text",
"decoded": {
"comment": "text"
}
},
"init_state": {
"hash": "text",
"body": "text"
}
},
"out_msgs": [
{
"hash": "text",
"source": "text",
"destination": "text",
"value": "text",
"fwd_fee": "text",
"ihr_fee": "text",
"created_lt": "text",
"created_at": "text",
"opcode": "text",
"ihr_disabled": false,
"bounce": false,
"bounced": false,
"import_fee": "text",
"message_content": {
"hash": "text",
"body": "text",
"decoded": {
"comment": "text"
}
},
"init_state": {
"hash": "text",
"body": "text"
}
}
],
"account_state_before": {
"hash": "text",
"balance": "text",
"account_status": "uninit",
"frozen_hash": "text",
"code_hash": "text",
"data_hash": "text"
},
"account_state_after": {
"hash": "text",
"balance": "text",
"account_status": "uninit",
"frozen_hash": "text",
"code_hash": "text",
"data_hash": "text"
},
"mc_block_seqno": 0
}
]
}