Domain Analysis
Analyze a Domain
Analyze a URL
https://app.aave.com/
POST /api/v2/analyze_url HTTP/1.1
Host: api.blockfence.io
Content-Type: application/json
Accept: */*
Content-Length: 31
{
"url": "https://app.aave.com/"
}
{
"severity": "Low",
"bf_web_analysis": [
{
"name": "URL Similarity Verification",
"findings": [
{
"description": "No similarity found"
}
],
"severity": "Low"
}
],
"partners_analysis": [
{
"name": "URL Similarity Verification",
"findings": [
{
"description": "No similarity found"
}
],
"severity": "Low"
}
]
}
Request Body Parameters
url
string
Domain / URL
Usage Example
curl https://api.blockfence.io/api/v2/analyze_url -X POST -H "Content-Type: application/json" -H "x-api-key: <YOUR API KEY>" -d '
{
"url": "https://app.aave.coin/"
}
'
Response Fields
severity
string
Indicates the severity level of the analysis result. Possible values: "High", "Medium", "Low".
analysis_score
number
A floating-point score quantifying the analysis outcome. Score is from 1 to 10.
is_contract
boolean
Specifies whether the analyzed address is a contract.
bf_web_analysis
array
An array of APIAnalyzerResult
objects containing web analysis results, if any.
bf_blockchain_analysis
array
An array of APIAnalyzerResult
objects containing blockchain analysis results, if any.
partners_analysis
array
An array of APIAnalyzerResult
objects containing analysis results from partners.
APIAnalyzerResult
name
string
The name of the analyzer that produced the findings.
findings
array
An array of Risk
objects detailing specific analysis findings.
severity
string
The severity level of the findings from this analyzer. Possible values: "High", "Medium". Low severity risks will not be returned.
Risk
description
string
A description of the risk identified.
label
string
An optional label categorizing the risk.
Last updated
Was this helpful?