Skip to main content
API-Dokumentation

Wallet-Validierungs-API

Validieren Sie Krypto-Wallet-Adressen mit Chain-Erkennung und Risikobewertung

POST /api/v1/wallet
Funktionen
Automatische Blockchain-Erkennung
Unterstützung für 59 Blockchain-Netzwerke
Adressformat-Validierung
Pro+
Risikobewertung und -analyse
Pro+
Guthaben- und Transaktionsdaten
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
Anfrage

Parameter

NameTypErforderlichBeschreibung
addressstring
Yes
Die zu validierende Wallet-Adresse
chainstring
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 ist
address: The validated address
chain: Erkannte oder angegebene Blockchain
autoDetected: Whether chain was auto-detected
Pro+
balance: Wallet-Guthaben (wenn verfügbar)
Pro+
transactions: Transaktionshistorie-Zusammenfassung
Pro+
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.