# Chromium VRP Reports > Structured archive of Chromium Vulnerability Reward Program (VRP) bug bounty reports. All data is served as static JSON over CDN — no authentication, no rate limits beyond Cloudflare's defaults. Base URL: https://vrp-reports.aivault.securityjunky.com Maintainer: Shantanu Ghumade, Security Tech Lead - Security Assurance at Deriv. Professional network: https://resume.aivault.securityjunky.com/ and https://securityjunky.com/ ## Discovery - [index.json](https://vrp-reports.aivault.securityjunky.com/data/index.json): Array of every bounty report (id, title, severity, component, bounty_amount, year, status). ~900KB. Start here to find IDs. - [stats.json](https://vrp-reports.aivault.securityjunky.com/data/stats.json): Aggregate stats — totals, histograms, by-year, by-severity, by-component, top bounties. - [schema.json](https://vrp-reports.aivault.securityjunky.com/schema.json): JSON Schema for a full report. - [skill.md](https://vrp-reports.aivault.securityjunky.com/skill.md): Agent-oriented usage guide with example queries. ## Per-report - `https://vrp-reports.aivault.securityjunky.com/data/issues//report.json`: Full structured report for one issue. - `https://vrp-reports.aivault.securityjunky.com/data/issues//report.md`: Markdown-rendered version suitable for LLM context. ## Typical agent flow 1. GET `/data/index.json` once — cache client-side. 2. Filter locally (by year, severity, bounty range, component). 3. GET `/data/issues//report.json` or `/report.md` for full details on matches. CORS is enabled (`Access-Control-Allow-Origin: *`) on all `/data/*` and agent-facing files.