Actions

Get Actions

get

Get actions by specified filter.

Authorizations
Query parameters
accountstringOptional

List of account addresses to get actions. Can be sent in hex, base64 or base64url form.

tx_hashstring[]Optional

Find actions by transaction hash.

msg_hashstring[]Optional

Find actions by message hash.

action_idstring[]Optional

Find actions by the action_id.

trace_idstring[]Optional

Find actions by the trace_id.

mc_seqnointegerOptional

Query actions of traces which was completed in masterchain block with given seqno

start_utimeintegerOptional

Query actions for traces with trace_end_utime >= start_utime.

end_utimeintegerOptional

Query actions for traces with trace_end_utime <= end_utime.

start_ltintegerOptional

Query actions for traces with trace_end_lt >= start_lt.

end_ltintegerOptional

Query actions for traces with trace_end_lt <= end_lt.

limitinteger · min: 1 · max: 1000Optional

Limit number of queried rows. Use with offset to batch read.

offsetintegerOptional

Skip first N rows. Use with limit to batch read.

sortstring · enumOptional

Sort actions by lt.

Possible values:
Responses
200
OK
application/json
get
GET /api/v3/actions HTTP/1.1
Host: ton-index.nownodes.io
X-Api-Key: YOUR_API_KEY
Accept: */*
{
  "actions": [
    {
      "action_id": "text",
      "details": null,
      "end_lt": "0",
      "end_utime": 1,
      "start_lt": "0",
      "start_utime": 1,
      "success": true,
      "trace_end_lt": "0",
      "trace_end_utime": 1,
      "trace_external_hash": "text",
      "trace_id": "text",
      "trace_mc_seqno_end": 1,
      "transactions": [
        "text"
      ],
      "type": "text"
    }
  ],
  "address_book": {
    "ANY_ADDITIONAL_PROPERTY": {
      "domain": "text",
      "user_friendly": "text"
    }
  },
  "metadata": {
    "ANY_ADDITIONAL_PROPERTY": {
      "is_indexed": true,
      "token_info": [
        {
          "description": "text",
          "extra": {
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "image": "text",
          "name": "text",
          "symbol": "text",
          "type": "text"
        }
      ]
    }
  }
}