Overview
Web of Trust scores domains and URLs for trustworthiness and safety based on community ratings. Useful for link-safety dashboards or browser extension prototypes.
Beginner Tip
Free tier gives 1,000 requests/day. Look up bare domains rather than full URLs to maximize quota efficiency.
Available Data
The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.
Example Response
Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.
{
"status": "success",
"data": {
"result": "Data from Web of Trust",
"description": "IP/domain/URL reputation",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
target The domain or URL that was evaluated safety.status Overall verdict: SAFE, UNSATISFACTORY, or DANGEROUS categories Content category labels assigned by the community safety.reputation Numerical safety score from 0 (dangerous) to 100 (safe) safety.confidence Rating count backing the score; below 25 means limited data Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://scorecard.api.mywot.com/v3/targets?t=google.com";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.
Metadata Score Breakdown
Estimated from metadata — endpoint not independently tested
Metadata estimate · endpoint not independently tested
Technical Specifications
Related Tags
Explore More
Similar APIs
View All →AbuseIPDB
AbuseIPDB lets you check whether an IP address has been reported for malicious activity like spam, hacking, or DDoS attacks.
AlienVault Open Threat Exchange (OTX)
AlienVault Open Threat Exchange (OTX) provides programmatic access to ip/domain/url reputation via REST API.
CAPEsandbox
CAPEsandbox is an open-source malware analysis platform that executes suspicious files in an isolated environment and reports on their behavior.
Google Safe Browsing
Google Safe Browsing lets you check any URL against Google's constantly updated lists of phishing sites, malware distributors, and unwanted software.
MalDatabase
MalDatabase provides programmatic access to provide malware datasets and threat intelligence feeds via REST API.