Security
URL safety score API
Aggregate URL parsing heuristics and threat-feed reputation into a single safety verdict.
Price$0.01per request
MethodPOST
Route/v1/security/url-safety
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
securityurlphishingmalwarereputation
API URL
Integration docshttps://x402.hexl.dev/v1/security/url-safetyExample request
{
"url": "https://example.com/login"
}Example response
{
"url": "https://example.com/login",
"score": 5,
"verdict": "clean",
"signals": [
"Phishing-associated keyword in path."
],
"provider": "url-reputation-plus-parser"
}Input schema
{
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"minLength": 1
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}