API-Dokumentation
Wallet-Validierungs-API
Validieren Sie Krypto-Wallet-Adressen mit Chain-Erkennung und Risikobewertung
POST /api/v1/walletFunktionen
Automatische Blockchain-Erkennung
Unterstützung für 59 Blockchain-Netzwerke
Adressformat-Validierung
Pro+
Risikobewertung und -analysePro+
Guthaben- und TransaktionsdatenSupported 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
Anfrage
Parameter
| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
address | string | Yes | Die zu validierende Wallet-Adresse |
chain | string | No | Blockchain-Netzwerk (optional, wird automatisch erkannt) |
Beispiel - 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"}'Beispiel - 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"}'Antwort
Antwortfelder
valid: Ob das Adressformat gültig istaddress: The validated addresschain: Erkannte oder angegebene BlockchainautoDetected: Whether chain was auto-detectedPro+
balance: Wallet-Guthaben (wenn verfügbar)Pro+
transactions: Transaktionshistorie-ZusammenfassungPro+
risk: Risikobewertung (Pro+-Pläne)Beispiel 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"
}Ausprobieren
To test the API, create an API key in the dashboard and use the examples above.