Skip to main content
POST
/
clients
/
me
/
integrations
/
blockaid
/
tron
/
scan
Scan a TRON transaction
curl --request POST \
  --url https://api.portalhq.io/api/v3/clients/me/integrations/blockaid/tron/scan \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "chain": "<string>",
  "account_address": "<string>",
  "data": {
    "from": "<string>",
    "to": "<string>",
    "data": "<string>",
    "value": "<string>"
  },
  "options": [
    "<string>"
  ]
}
'
{
  "data": {
    "rawResponse": {
      "validation": {},
      "simulation": {}
    }
  }
}

Authorizations

Authorization
string
header
required

Client API Key or Client Session Token (CST). Pass as a Bearer token in the Authorization header.

Body

application/json
chain
string
required

Chain ID in CAIP-2 format. Only tron:mainnet is supported.

account_address
string
required

The TRON account address (base58) the transaction relates to.

data
object
required
options
string[]

Response sections to include (e.g. validation, simulation).

Response

Scan completed successfully

data
object