Skip to main content
POST
/
v1
/
security
/
wallet-risk
Check wallet risk
curl --request POST \
  --url https://releasing-soon.com/v1/security/wallet-risk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "address": "9xQeWvG816bUx9EPfQ5D9b8fRGyJitf8F6f4fH6QJjAo",
  "chain": "solana"
}
'
{
  "score": 50,
  "reasons": [
    {
      "code": "LOW_LIQUIDITY",
      "message": "Liquidity is thin for this token."
    }
  ],
  "summary": "<string>"
}

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
Example:

"9xQeWvG816bUx9EPfQ5D9b8fRGyJitf8F6f4fH6QJjAo"

chain
enum<string>
default:solana
Available options:
solana

Response

Wallet risk result.

riskLevel
enum<string>
required
Available options:
low,
medium,
high,
critical
score
integer
required
Required range: 0 <= x <= 100
reasons
object[]
required
summary
string