Skip to main content
POST
/
clients
/
me
/
integrations
/
hypernative
/
eip-712
/
scan
Scan an EIP-712 message
curl --request POST \
  --url https://api.portalhq.io/api/v3/clients/me/integrations/hypernative/eip-712/scan \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "walletAddress": "<string>",
  "chainId": "<string>",
  "eip712Message": {
    "primaryType": "<string>",
    "types": {},
    "domain": {},
    "message": {}
  },
  "showFullFindings": true,
  "policy": "<string>"
}
'
{
  "data": {
    "rawResponse": {
      "assessmentId": "<string>",
      "assessmentTimestamp": "<string>",
      "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
walletAddress
string
required

The wallet address signing the message.

chainId
string
required

Chain ID in CAIP-2 format.

eip712Message
object
required
showFullFindings
boolean
policy
string

Response

Scan completed successfully

data
object