Skip to main content
POST
/
v1
/
security
/
token-risk
Check token risk
curl --request POST \
  --url https://releasing-soon.com/v1/security/token-risk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "mint": "<string>",
  "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
mint
string
required
chain
enum<string>
default:solana
Available options:
solana

Response

Token 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