API & Documentation
Build with ApexNova Tools
Every tool on this site is backed by a plain HTTP endpoint on its own subdomain, e.g. mergepdf.apexnovasystems.tech. No API key is required in the current release.
Getting started
- Pick a tool below and note its subdomain.
POSTyour file(s) asmultipart/form-data(or JSON where noted).- Read the JSON response — most endpoints return either a download URL or the file stream directly.
Example: Generate a QR code
curl -X POST https://qr.apexnovasystems.tech/api/generate \
-H "Content-Type: application/json" \
-d '{"text": "https://apexnovasystems.com"}'
Returns {"success": true, "image": "<base64 PNG>", "data": "..."}
Example: Merge PDFs
// 1. Upload each file
const form = new FormData();
form.append("files", fileA);
form.append("files", fileB);
await fetch("https://mergepdf.apexnovasystems.tech/api/upload", { method: "POST", body: form });
// 2. Merge in the order you want
await fetch("https://mergepdf.apexnovasystems.tech/api/merge", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ order: ["", ""] }),
});
// 3. Download
window.location.href = "https://mergepdf.apexnovasystems.tech/download";
All endpoints
| Tool | Subdomain | Status |
|---|---|---|
| Merge PDF | https://mergepdf.apexnovasystems.tech/ | Live |
| Split PDF | https://splitpdf.apexnovasystems.tech/ | Live |
| Rotate PDF | https://rotatepdf.apexnovasystems.tech/ | Live |
| Compress PDF | https://compresspdf.apexnovasystems.tech/ | Live |
| Repair PDF | — | Planned |
| PDF/A Converter | — | Planned |
| PDF to Image | https://pdftoimage.apexnovasystems.tech/ | Live |
| Image to PDF | https://imagetopdf.apexnovasystems.tech/ | Live |
| PDF to Word | — | Planned |
| Word to PDF | — | Planned |
| PDF to Excel | — | Planned |
| Excel to PDF | — | Planned |
| PDF to PowerPoint | — | Planned |
| PowerPoint to PDF | — | Planned |
| Edit PDF | — | Planned |
| Crop PDF | — | Planned |
| Watermark PDF | https://watermarkpdf.apexnovasystems.tech/ | Live |
| Protect PDF | — | Planned |
| Unlock PDF | — | Planned |
| AI PDF Summary | — | Planned |
| AI Chat with PDF | — | Planned |
| OCR Tool | https://ocr.apexnovasystems.tech/ | Live |
| QR Generator | https://qr.apexnovasystems.tech/ | Live |