Create PDF reports from dashboards, analytics, and data visualizations.
Stakeholders want to download reports as PDFs, but exporting complex dashboards with charts and tables to PDF is technically challenging.
Render your report as HTML (including charts via JavaScript) and convert to PDF. Our Chromium-based renderer handles complex layouts, SVG charts, and custom fonts.
const res = await fetch("https://api.apiverve.com/v1/htmltopdf", { method: "POST", headers: { "x-api-key": "YOUR_API_KEY" } });
const { data } = await res.json();
console.log(data);