Public Lookup API

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.

Endpoint

GET https://bugbountyscam.com/api/lookup?domain=example.com

Query Parameters

Reputation Score

Computed from report count and severity mix:

Example Request

curl "https://bugbountyscam.com/api/lookup?domain=example.com"

Example Response

{
  "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"
    }
  ]
}

Response Fields

Please cache responses and avoid hammering the endpoint. Rate limiting applies. Data is community-submitted; a report is a researcher's account, not a legal finding.

BugBountyScam.com · Contact: admin@bugbountyscam.com