Skip to main content
Documentazione API

API Validazione Wallet

Valida indirizzi wallet crypto con rilevamento chain e punteggio rischio

POST /api/v1/wallet
Funzionalità
Rilevamento automatico blockchain
Supporto per 59 reti blockchain
Validazione formato indirizzo
Pro+
Punteggio e analisi rischio
Pro+
Dati saldo e transazioni
Supported Blockchains
59 blockchains supported. Chain is auto-detected from address format.
ethereum
polygon
arbitrum
optimism
base
avalanche
bsc
fantom
bitcoin
litecoin
solana
tron
ripple
cardano
polkadot
cosmos
near
ton
+41 more
Richiesta

Parametri

NameTipoObbligatorioDescrizione
addressstring
Yes
L'indirizzo wallet da validare
chainstring
No
Rete blockchain (opzionale, auto-rilevata se non fornita)

Esempio - Auto-detect

curl -X POST https://verifydest.io/api/v1/wallet \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"address": "0x742d35Cc6634C0532925a3b844Bc454e7E5Ed7Db"}'

Esempio - Specific Chain

curl -X POST https://verifydest.io/api/v1/wallet \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"address": "bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf5mdq", "chain": "bitcoin"}'
Risposta

Campi Risposta

valid: Se il formato indirizzo è valido
address: The validated address
chain: Blockchain rilevata o specificata
autoDetected: Whether chain was auto-detected
Pro+
balance: Saldo wallet (quando disponibile)
Pro+
transactions: Riepilogo storico transazioni
Pro+
risk: Valutazione rischio (piani Pro+)

Esempio Response

{
  "success": true,
  "data": {
    "valid": true,
    "address": "0x742d35Cc6634C0532925a3b844Bc454e7E5Ed7Db",
    "chain": {
      "slug": "ethereum",
      "name": "Ethereum",
      "shortName": "ETH",
      "isEvm": true,
      "nativeCurrency": "ETH",
      "explorerUrl": "https://etherscan.io"
    },
    "autoDetected": true,
    "balance": "1.234 ETH",
    "transactions": {
      "count": 156,
      "first": "2021-01-15",
      "last": "2025-06-20"
    },
    "risk": {
      "score": 65,
      "level": "LOW",
      "breakdown": [
        {
          "factor": "tx_history",
          "impact": 15,
          "description": "Established transaction history"
        },
        {
          "factor": "age",
          "impact": 10,
          "description": "Address older than 1 year"
        }
      ]
    },
    "explorerLink": "https://etherscan.io/address/0x742d35Cc6634C0532925a3b844Bc454e7E5Ed7Db"
  },
  "timestamp": "2025-06-24T10:30:00.000Z"
}
Provalo

Per testare l'API, crea una chiave API nella dashboard e usa gli esempi sopra.