Convert a document with LibreOffice: text documents (docx, doc, odt, rtf, txt, md, html) -
Convert a document with LibreOffice: text documents (docx, doc, odt, rtf, txt, md, html) -> pdf, docx, odt, html, txt, png; spreadsheets (xlsx, xls, ods, csv) -> pdf, xlsx, ods, csv, png; presentations (pptx, ppt, odp) -> pdf, pptx, odp, png. Returns base64 output JSON.
20000 (raw units)
price
—
calls / 30d
—
unique payers
2026-09-21
updated
Provider
Quietforge Docs API · verified
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3F5115236f25618c16021E983acaAF2CAaa1A35e",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"type": "object",
"properties": {
"filename": {
"type": "string"
},
"content_type": {
"type": "string"
},
"bytes": {
"type": "integer"
},
"pages": {
"type": [
"integer",
"null"
],
"description": "PDF page count when the output is a PDF"
},
"content_base64": {
"type": "string"
}
},
"required": [
"filename",
"content_type",
"bytes",
"content_base64"
]
}Use it
curl
curl "https://renaissance-village-cheapest-downtown.trycloudflare.com/v1/convert" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://renaissance-village-cheapest-downtown.trycloudflare.com/v1/convert");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://renaissance-village-cheapest-downtown.trycloudflare.com/v1/convert")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/15693.json, and this resource appears in /discovery/resources and /discovery/search.