arrow_back All endpoints

PowerPoint to PDF

POST/api/v1/tools/ppt-to-pdf15 credits per callpowerpointpptxpdfconvertofficelibreoffice

Downloads a presentation from a public URL and converts it to PDF. Supported uploads: .ppt, .pptx, .odp.

receipt_long
Why 15 credits?

Same LibreOffice worker cost as Word to PDF - one deck, several seconds of CPU.

Any HTTP client works. Replace the key with one from your dashboard.

bash
curl -X POST https://toolkitbackend-j69m.onrender.com/api/v1/tools/ppt-to-pdf \
  -H "Authorization: Bearer tb_live_<your_api_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "fileUrl": "https://example.com/deck.pptx"
}'

Input

FieldTypeRequiredDefaultDescription
fileUrlstringrequired- Publicly reachable URL of the PPT/PPTX/ODP file.

Output

FieldTypeDescription
fileBase64stringConverted PDF, base64-encoded, without a data URI prefix.
mimeTypestringAlways application/pdf.
fileNamestringSuggested download name.
sizeBytesintegerSize of the decoded PDF.

Try it

Sends a real POST /api/v1/tools/ppt-to-pdf from your browser and charges 15 credits to your account.

Sign in to run this endpoint. New accounts start with free credits.