Overview
HackerOne's API gives programmatic access to bug bounty program data, reports, and vulnerability information on the HackerOne platform. Developers and security teams can use it to automate report triage, track vulnerability status, and integrate bug bounty workflows into their existing tools. Access requires HackerOne credentials and is mainly aimed at program managers and researchers.
Beginner Tip
Authenticate using HTTP Basic auth with your HackerOne username and an API token generated from your account settings — the API does not use a simple API key header. Start by listing programs to understand the data structure before fetching individual reports.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from HackerOne",
"description": "The industry’s first hacker API that helps increase productivity towards creative bug bounty hunting",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
data.id Unique identifier for the resource (program, report, etc.). data.type Resource type, such as "program" or "report". data.attributes.state Current state of a report (e.g., new, triaged, resolved, closed). data.attributes.severity_rating Severity of the vulnerability: none, low, medium, high, or critical. data.attributes.bounty_amount Dollar amount awarded for the report, if a bounty has been paid. Implementation Example
const url = "https://api.hackerone.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
Similar APIs
View All →Application Environment Verification
Application Environment Verification (AEV) is an Android library and API from FingerprintJS that checks whether a user device is safe to use.
BinaryEdge
BinaryEdge is a cybersecurity platform that continuously scans the entire internet and exposes the results through its API.
Botd
Botd is an open-source JavaScript library and API from FingerprintJS that detects whether a web visitor is a bot or a real human browser.
Bugcrowd
The Bugcrowd API gives you programmatic access to your organization's bug bounty program data, including submissions, rewards, and researcher profiles.
Censys
Censys is an internet-wide scanning platform that lets you search for any internet-connected host, device, or certificate using its REST API.