Convert HTML, Word, Excel, RTF and Markdown to PDF, render HTML to images, build, edit and merge PDFs — one API, one credit per document.
Get started free View pricingcurl -X POST https://api.rendarium.com/convert/html \
-H "Authorization: Bearer rnd_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"html": "<h1>Invoice #1024</h1>"}' \
--output invoice.pdf
using var http = new HttpClient();
http.DefaultRequestHeaders.Authorization = new("Bearer", "rnd_live_YOUR_KEY");
var body = JsonContent.Create(new { html = "<h1>Invoice #1024</h1>" });
var response = await http.PostAsync(
"https://api.rendarium.com/convert/html", body);
await File.WriteAllBytesAsync("invoice.pdf",
await response.Content.ReadAsByteArrayAsync());
import requests
response = requests.post(
"https://api.rendarium.com/convert/html",
headers={"Authorization": "Bearer rnd_live_YOUR_KEY"},
json={"html": "<h1>Invoice #1024</h1>"},
)
open("invoice.pdf", "wb").write(response.content)
var request = HttpRequest.newBuilder()
.uri(URI.create("https://api.rendarium.com/convert/html"))
.header("Authorization", "Bearer rnd_live_YOUR_KEY")
.header("Content-Type", "application/json")
.POST(HttpRequest.BodyPublishers.ofString(
"{\"html\": \"<h1>Invoice #1024</h1>\"}"))
.build();
HttpClient.newHttpClient().send(request,
HttpResponse.BodyHandlers.ofFile(Path.of("invoice.pdf")));
const response = await fetch("https://api.rendarium.com/convert/html", {
method: "POST",
headers: {
"Authorization": "Bearer rnd_live_YOUR_KEY",
"Content-Type": "application/json",
},
body: JSON.stringify({ html: "<h1>Invoice #1024</h1>" }),
});
await fs.writeFile("invoice.pdf", Buffer.from(await response.arrayBuffer()));
Every operation follows the same pattern: one request in, one document out, one credit per success. Failures are never charged.
Simple monthly credits. One successful document = one credit. Failures are never charged.
100 conversions / month
500 conversions / month
2,500 conversions / month
15,000 conversions / month
60,000 conversions / month
Top-ups available from your account. Unused monthly credits don't roll over.
Perpetual licenses with calendar versioning: every release published before your license horizon is yours forever. Renewals extend the horizon — your existing versions never stop working.
1 developer, unlimited internal deployment
Unlimited developers, one company
Company + redistribution rights for your applications
License pricing published at launch.
The hosted API and Docker image are launching soon. Write to us for early access, launch pricing and updates.
office@rendarium.com