Overview
Metacert is a link classification and flagging API that checks URLs against curated threat intelligence to identify phishing, adult content, and malicious sites. It is designed for integration into messaging apps, browsers, and content moderation pipelines. Beginners can use it to add URL safety checks to chatbots or link-sharing features.
Beginner Tip
Metacert requires an API key obtained by contacting them directly or via RapidAPI — check their website for the current access method as the onboarding process has changed over time.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Metacert",
"description": "Metacert Link Flagging",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
url The URL that was checked category Classification of the URL, such as phishing, adult, or safe flagged Whether the URL is flagged as potentially harmful confidence Confidence score (0-1) indicating certainty of the classification Implementation Example
const url = "https://metacert.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
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Related Tags
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.