Skip to main content
POST
/
v1
/
security
/
address-screen
Screen an address
curl --request POST \
  --url https://releasing-soon.com/v1/security/address-screen \
  --header 'Authorization: Bearer <token>' \
  --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."
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.nshield.org/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a Nova developer API key in the Authorization header. Demo playground keys should be restricted, rate-limited, and domain-scoped.

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[]