Query the BugBountyScam database for a program's scam-report history and reputation score. No authentication required. Responses are cached and safe to call from a browser or server.
GET https://bugbountyscam.com/api/lookup?domain=example.com
domain — the program domain to look up. Subdomains and case are normalized to the registrable root (e.g. api.Example.com → example.com).q — optional fuzzy substring search instead of exact domain match.Computed from report count and severity mix:
curl "https://bugbountyscam.com/api/lookup?domain=example.com"
{
"query": "example.com",
"domain": "example.com",
"count": 3,
"severity": {
"critical": 1,
"high": 1,
"medium": 1,
"low": 0
},
"reputation": {
"score": "red",
"label": "Multiple serious reports",
"points": 8.5
},
"posts": [
{
"id": "uXXXXXXXXXXXX",
"domain": "example.com",
"title": "No payout after fix",
"platform": "HackerOne",
"severity": "critical",
"scam_type": "no-payout",
"published_at": "2026-06-01T10:00:00.000Z"
}
]
}
count — number of published reports for the program.severity — breakdown of reports by severity (critical/high/medium/low).reputation.score — green, amber, or red.reputation.label — human-readable summary.reputation.points — weighted severity score (higher = worse).posts — array of matching published reports.BugBountyScam.com · Contact: admin@bugbountyscam.com