pdf-api
Convert HTML
to PDF
with a single endpoint.
Install
Be sure to install wkhtmltopdf before using pdf-api
.
Launch
$ PORT=3000 pdf-api
Endpoints
Generate
Arguments
(String) orientation: "[portrait|landscape]"
(String) url: ""
(String) html: ""
url
or html
are required
Request
GET /generate
?orientation=[portrait|landscape] &url=https://google.fr &html=<html>Hello</html>
Response
Error
{
"msg": "error message"
}
Success
Your pdf file
Request
POST /generate
{
"orientation": "[portrait|landscape]",
"url": "https://google.fr",
"html": "<html>Hello</html>"
}
Response
Error
{
"msg": "error message"
}
Success
Your pdf file
License
MIT