ApexNova
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

  1. Pick a tool below and note its subdomain.
  2. POST your file(s) as multipart/form-data (or JSON where noted).
  3. 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 https://repairpdf.apexnovasystems.tech/ Live
PDF/A Converter https://pdftopdfa.apexnovasystems.tech/ Live
PDF to Image https://pdftoimage.apexnovasystems.tech/ Live
Image to PDF https://imagetopdf.apexnovasystems.tech/ Live
PDF to Word https://pdftoword.apexnovasystems.tech/ Live
Word to PDF https://wordtopdf.apexnovasystems.tech/ Live
PDF to Excel https://pdftoexcel.apexnovasystems.tech/ Live
Excel to PDF https://exceltopdf.apexnovasystems.tech/ Live
PDF to PowerPoint https://pdftopowerpoint.apexnovasystems.tech/ Live
PowerPoint to PDF https://powerpointtopdf.apexnovasystems.tech/ Live
Edit PDF https://editpdf.apexnovasystems.tech/ Live
Crop PDF https://croppdf.apexnovasystems.tech/ Live
Watermark PDF https://watermarkpdf.apexnovasystems.tech/ Live
Protect PDF https://protectpdf.apexnovasystems.tech/ Live
Unlock PDF https://unlockpdf.apexnovasystems.tech/ Live
AI PDF Summary https://aisummary.apexnovasystems.tech/ Live
AI Chat with PDF https://aichat.apexnovasystems.tech/ Live
OCR Tool https://ocr.apexnovasystems.tech/ Live
QR Generator https://qr.apexnovasystems.tech/ Live
Audio to Text https://audiototext.apexnovasystems.tech/ Live
Compress Video https://compressvideo.apexnovasystems.tech/ Live