PendingActions

Get Pending 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.

ext_msg_hashstring[]Optional

Find actions by trace external hash

Responses
200
OK
application/json
get
GET /api/v3/pendingActions 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"
        }
      ]
    }
  }
}