Skip to main content
POST
/
v1
/
wallet
/
address
Scan address (wallet)
curl --request POST \
  --url https://api.novashield.so/v1/wallet/address \
  --header 'Content-Type: application/json' \
  --data '
{
  "chain": "solana",
  "address": "5tzFkiKscXHK5ZXCGbXZxdw7gTjjD1mBwuoFbhUvuAi9"
}
'
{
  "address": "<string>",
  "verdict": "safe",
  "score": 0.5,
  "tags": [
    "type:wallet",
    "verified",
    "cex:binance"
  ],
  "reasons": [
    "Belongs to a known trusted entity"
  ],
  "metadata": {
    "type": "wallet",
    "first_seen": "2023-11-07T05:31:56Z",
    "last_seen": "2023-11-07T05:31:56Z",
    "tx_count": 123
  }
}
Returns verdict, risk score, tags (e.g., verified, cex:binance), and metadata like first/last seen and tx count.

Body

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

Solana address to analyze

Example:

"5tzFkiKscXHK5ZXCGbXZxdw7gTjjD1mBwuoFbhUvuAi9"

Response

Address analysis complete

address
string

The analyzed address

verdict
enum<string>

Address reputation verdict

Available options:
safe,
suspicious,
malicious,
unknown
score
number

Risk score

Required range: 0 <= x <= 1
tags
string[]

Classification tags

Example:
["type:wallet", "verified", "cex:binance"]
reasons
string[]

Explanation for the verdict

Example:
["Belongs to a known trusted entity"]
metadata
object

Additional address information