Skip to main content
POST
/
v1
/
security
/
address-screen
Screen an address
curl --request POST \
  --url https://api-nova.tech/v1/security/address-screen \
  --header 'Content-Type: application/json' \
  --data '
{
  "address": "<string>",
  "chain": "solana"
}
'
{
  "address": "<string>",
  "allowed": true,
  "reasons": [
    {
      "code": "LOW_LIQUIDITY",
      "message": "Liquidity is thin for this token."
    }
  ]
}

Body

application/json
address
string
required
chain
enum<string>
default:solana
Available options:
solana

Response

Address screening result.

address
string
required
riskLevel
enum<string>
required
Available options:
low,
medium,
high,
critical
allowed
boolean
required
reasons
object[]