Developer APIs for Herkules platform. Currently featuring document processing services.
We built these APIs to solve our own document processing needs at Herkules. Working with thousands of tender documents daily, we needed reliable, fast conversion tools that just work.
Now we're making them available to other developers. No complex SDKs, no vendor lock-in - just simple REST endpoints that handle the heavy lifting of document processing.
Look up Danish company information by CVR number. Returns name, address, and contact details.
https://herkules.dk/api/cvr/lookup?cvr=12345678curl "https://herkules.dk/api/cvr/lookup?cvr=45333043" \
-H "Authorization: Bearer YOUR_API_KEY"{
"vat": 45333043,
"name": "RTT A/S",
"address": "Transformervej 4",
"zipcode": 2860,
"city": "Soborg",
"phone": "44535515"
}Convert PDF, DOCX, PPTX, and other documents to clean Markdown text.
https://api.herkules.dk/convert/markdowncurl -X POST https://api.herkules.dk/convert/markdown \
-H "Authorization: Bearer YOUR_API_KEY" \
-F "file=@document.pdf"{
"filename": "document.pdf",
"markdown": "# Content..."
}Convert Office documents to PDF using Gotenberg LibreOffice engine.
https://api.herkules.dk/convert/pdfcurl -X POST https://api.herkules.dk/convert/pdf \
-H "Authorization: Bearer YOUR_API_KEY" \
-F "file=@document.docx" \
--output document.pdfBinary PDF file (application/pdf)Generate JPEG thumbnails from PDF first pages.
https://api.herkules.dk/thumbnailcurl -X POST https://api.herkules.dk/thumbnail \
-H "Authorization: Bearer YOUR_API_KEY" \
-F "file=@document.pdf" \
-F "width=800" \
-F "height=600" \
--output thumbnail.jpgBinary JPEG image (image/jpeg)// Initialize your access credentials