SmallPDF.us
Entwickler API · v1

Die PDF-API für Entwickler

Ein einfacher REST-Endpunkt pro Aufgabe. PDFs zusammenführen, konvertieren, komprimieren und schützen — aus jeder Sprache, ohne SDK, ohne Server.

11 Endpunkte
PDF, Word & Bilder
Kein SDK
Einfaches HTTP + multipart
Privat
Gescannt & automatisch gelöscht
Jede Sprache
cURL, Node, Python…

Schnellstart

1. Schlüssel holen

Anmelden und Schlüssel im Dashboard erstellen.

2. Endpunkt aufrufen

Datei als multipart/form-data POSTen.

3. Ergebnis erhalten

Die verarbeitete Datei wird sofort zurückgestreamt.

Request
curl -X POST https://smallpdf.us/api/v1/merge \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "files=@image1.pdf" \
  -F "files=@image2.pdf" \
  -o merged.pdf

Authentifizierung

Jede Anfrage muss Ihren geheimen Schlüssel im X-API-Key -Header enthalten. Schlüssel verwalten Sie in Ihrem Dashboard. Schlüssel serverseitig aufbewahren — niemals im Client-Code exponieren.

Request
X-API-Key: sk_live_xxxxxxxxxxxxxxxxxxxxxxxx

Basis-URL & Antworten

Alle Endpunkte sind POST unter:

https://smallpdf.us/api/v1
  • Bei Erfolg wird die verarbeitete Datei direkt im Body zurückgegeben.
  • Bei Fehler wird ein JSON-Body zurückgegeben: { "error": "...", "code": "..." }
  • Jede Antwort enthält X-RateLimit-Limit / X-RateLimit-Remaining
  • Uploads werden auf Malware gescannt und sofort nach der Verarbeitung von unseren Servern gelöscht.

Endpunkte

Organisieren

POST/v1/mergeMerge PDF

Combine two or more PDFs into a single document, in the order provided.

Parameter

filesfile[]erforderlich

Two or more PDF files.

Rückgabe: PDF file · merged.pdf

Request
curl -X POST https://smallpdf.us/api/v1/merge \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "files=@image1.pdf" \
  -F "files=@image2.pdf" \
  -o merged.pdf
POST/v1/splitSplit PDF

Split a PDF. Without `pages` you receive a ZIP with one PDF per page; with `pages` you receive a single PDF of just those pages.

Parameter

filefileerforderlich

The PDF to split.

pagesstringoptional

Optional range, e.g. "1,3,5-7".

Rückgabe: PDF file · split.pdf

Request
curl -X POST https://smallpdf.us/api/v1/split \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "file=@input.pdf" \
  -F "pages=1-3" \
  -o split.pdf
POST/v1/rotateRotate PDF

Rotate every page by a multiple of 90 degrees.

Parameter

filefileerforderlich

The PDF to rotate.

angleintoptional

90, 180 or 270. Default 90.

Rückgabe: PDF file · rotated.pdf

Request
curl -X POST https://smallpdf.us/api/v1/rotate \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "file=@input.pdf" \
  -F "angle=90" \
  -o rotated.pdf

Konvertieren

POST/v1/pdf-to-wordPDF to Word

Convert a PDF into an editable Word (.docx) document with layout preserved.

Parameter

filefileerforderlich

The PDF to convert.

Rückgabe: Word .docx file · converted.docx

Request
curl -X POST https://smallpdf.us/api/v1/pdf-to-word \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "file=@input.pdf" \
  -o converted.docx
POST/v1/word-to-pdfWord to PDF

Convert a Word document (.doc, .docx, .odt, .rtf) into a PDF.

Parameter

filefileerforderlich

The document to convert.

Rückgabe: PDF file · converted.pdf

Request
curl -X POST https://smallpdf.us/api/v1/word-to-pdf \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "file=@input.docx" \
  -o converted.pdf
POST/v1/pdf-to-jpgPDF to JPG

Render each PDF page to a JPG image. Returns a ZIP archive.

Parameter

filefileerforderlich

The PDF to convert.

qualitystringoptional

standard (150dpi) · high (300) · maximum (600).

Rückgabe: ZIP archive of images · pages.zip

Request
curl -X POST https://smallpdf.us/api/v1/pdf-to-jpg \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "file=@input.pdf" \
  -F "quality=high" \
  -o pages.zip
POST/v1/pdf-to-pngPDF to PNG

Render each PDF page to a PNG image. Returns a ZIP archive.

Parameter

filefileerforderlich

The PDF to convert.

qualitystringoptional

standard · high · maximum.

Rückgabe: ZIP archive of images · pages.zip

Request
curl -X POST https://smallpdf.us/api/v1/pdf-to-png \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "file=@input.pdf" \
  -F "quality=high" \
  -o pages.zip
POST/v1/jpg-to-pdfJPG to PDF

Combine one or more JPG images into a single PDF (one image per page).

Parameter

filesfile[]erforderlich

One or more JPG images.

Rückgabe: PDF file · images.pdf

Request
curl -X POST https://smallpdf.us/api/v1/jpg-to-pdf \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "files=@image1.jpg" \
  -F "files=@image2.jpg" \
  -o images.pdf
POST/v1/png-to-pdfPNG to PDF

Combine one or more PNG images into a single PDF (one image per page).

Parameter

filesfile[]erforderlich

One or more PNG images.

Rückgabe: PDF file · images.pdf

Request
curl -X POST https://smallpdf.us/api/v1/png-to-pdf \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "files=@image1.png" \
  -F "files=@image2.png" \
  -o images.pdf

Optimieren

POST/v1/compressCompress PDF

Reduce a PDF's file size with lossless stream compression.

Parameter

filefileerforderlich

The PDF to compress.

Rückgabe: PDF file · compressed.pdf

Request
curl -X POST https://smallpdf.us/api/v1/compress \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "file=@input.pdf" \
  -o compressed.pdf

Schützen

POST/v1/protectProtect PDF

Encrypt a PDF with AES-256 so it can only be opened with the password.

Parameter

filefileerforderlich

The PDF to protect.

passwordstringerforderlich

Password required to open the file.

Rückgabe: PDF file · protected.pdf

Request
curl -X POST https://smallpdf.us/api/v1/protect \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "file=@input.pdf" \
  -F "password=secret123" \
  -o protected.pdf

Pläne & Kontingent

PlanAPI-AufrufePreis
Free50 / month$0
Starter1,000 / month$9/mo
Pro10,000 / month$19/mo
Max100,000 / monthContact sales

Kontingent wird am 1. jedes Monats (UTC) zurückgesetzt. Nur erfolgreiche Aufrufe zählen. Vollständige Preise ansehen

Status- & Fehlercodes

HTTPCodeBedeutung
200Success. The processed file is returned in the body.
400BAD_INPUTMissing or invalid file / parameters.
401NO_API_KEY · BAD_API_KEYMissing, invalid or revoked key.
429QUOTA_EXCEEDEDMonthly quota used up — upgrade your plan.
500PROCESSING_ERRORThe file could not be processed.

Heute mit der Entwicklung beginnen

Kostenlosen API-Schlüssel erstellen und in unter einer Minute den ersten Aufruf tätigen.

API-Schlüssel holen