Cardano Shield API
For a custom API Key, please contact [email protected], dm us on twitter/x, or raise an issue on our github
Wallet To Wallet Transaction Scan
Scan Wallet to Wallet Transaction for Scam Detection
POST /api/v1/tx/w2wscan HTTP/1.1
Host: api.cardanoshield.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 58
{
"cborHex": "text",
"toAddress": "text",
"fromAddress": "text"
}
{
"addressRisk": "suspicious",
"score": "low"
}
Response Body field's explanation:
addressRisk
suspicious - The address has been identified as potentially malicious.
unknown - The address is likely not phishing, but not 100% confident.
blacklist - The address is in Cardano Shield's blacklist.
whitelist - The address is in Cardano Shield's whitelist.
Score
low - The transaction overall risk score is Low.
medium - The transaction overall risk score is Medium.
High - The transaction overall risk score is High.
dApp Transaction Scan
Scan Transaction for Scam Detection
POST /api/v1/tx/scan HTTP/1.1
Host: api.cardanoshield.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 71
{
"cborHex": "text",
"toAddress": "text",
"fromAddress": "text",
"url": "text"
}
{
"domainRisk": "suspicious",
"addressRisk": "suspicious",
"receivingRisk": true,
"score": "low"
}
Response Body field's explanation:
domainRisk
suspicious - The website has been identified as potentially phishing.
unknown - The website is likely not phishing, but not 100% confident.
blacklist - The website is in Cardano Shield's blacklist.
whitelist - The website is in Cardano Shield's whitelist.
addressRisk
suspicious - The address has been identified as potentially malicious.
unknown - The address is likely not phishing, but not 100% confident.
blacklist - The address is in Cardano Shield's blacklist.
whitelist - The address is in Cardano Shield's whitelist.
receivingRisk
true - There's a high probability the user is not receiving enough ADA/Tokens.
false - There's a high probability the user is receiving the right amount of ADA/Tokens.
Score
low - The transaction overall risk score is Low.
medium - The transaction overall risk score is Medium.
High - The transaction overall risk score is High.
URL Phishing Scan
Scan URL for Phishing Detection
GET /api/v1/url/scan HTTP/1.1
Host: api.cardanoshield.com
Authorization: Bearer JWT
Accept: */*
suspicious
suspicious - The website has been identified as potentially phishing.
unknown - The website is likely not phishing, but not 100% confident.
blacklist - The website is in Cardano Shield's blacklist.
whitelist - The website is in Cardano Shield's whitelist.
Last updated