Check a Website
Let's say you want to check the website https://metamasuk.io (⚠️⚠️⚠️This is a phishing website, DO NOT VISIT), just request the API like this:
curl --request GET \
--url 'https://api.chainsight.com/api/check?keyword=https://metamasuk.io/' \
--header 'X-API-KEY: <<apiKey>>'
Then you should receive response like this:
{
"data": [
{
"type": "URL",
"chain": null,
"address": null,
"url": "https://metamasuk.io/",
"domain": null,
"ip": null,
"antiFraud": {
"credit": 3
},
"labels": null
}
]
}
The result in the data
array indicate that Chainsight has found 1 related entity:
- The entity
type
is URL, means that the entity is an URL of website. (See Entity Type) - The
antiFraud.credit
indicate the the anti-fraud grade is 3 (❌Warning). The website might be a phishing website. (See Anti-Fraud Grade) - For URL type entity, a addition
url
field will be returned.
API Reference
You can learn more about this GET /api/check API and give it a try HERE!
Updated about 2 years ago