Skip to main content
POST
/
clients
/
me
/
integrations
/
hypernative
/
solana
/
scan
Scan a Solana transaction
curl --request POST \
  --url https://api.portalhq.io/api/v3/clients/me/integrations/hypernative/solana/scan \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "transaction": {
    "message": {
      "accountKeys": [
        "<string>"
      ],
      "header": {},
      "instructions": [
        {}
      ],
      "addressTableLookups": [
        {}
      ],
      "recentBlockhash": "<string>"
    },
    "signatures": [
      "<string>"
    ],
    "rawTransaction": "<string>",
    "version": "legacy"
  },
  "url": "<string>",
  "validateRecentBlockHash": true,
  "showFullFindings": true,
  "policy": "<string>"
}
'
{
  "data": {
    "rawResponse": {
      "recommendation": "<string>",
      "expectedStatus": "<string>",
      "findings": [
        {}
      ],
      "involvedAssets": [
        {}
      ],
      "balanceChanges": [
        {}
      ],
      "parsedActions": [
        {}
      ]
    }
  }
}

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
transaction
object
required
url
string
validateRecentBlockHash
boolean
showFullFindings
boolean
policy
string

Response

Scan completed successfully

data
object