PDF-verktyg API
Slutpunkter for sammanslagning, delning, komprimering, konvertering, skydd och hantering av PDF-filer. Alla slutpunkter accepterar multipart/form-data och returnerar den bearbetade filen som en binar nedladdning.
PDF-sammanslagning
/api/pdf-mergeSla ihop flera PDF-filer till ett enda PDF-dokument. Filerna slas ihop i den ordning de laddas upp.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
files | File[] | Required | Flera PDF-filer att sla ihop |
Sammanslagen PDF-filcurl -X POST https://freefiletools.io/api/pdf-merge \
-H "x-api-key: fft_your_api_key" \
-F "[email protected]" \
-F "[email protected]" \
-F "[email protected]" \
-o merged.pdfPDF-delning
/api/pdf-splitDela en PDF-fil i flera delar baserat pa sidintervall. Returnerar en ZIP-fil som innehaller de delade PDF-filerna.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file | File | Required | PDF-fil att dela |
ranges | string | Required | Sidintervall, t.ex. "1-3,5,7-9". Varje intervall blir en separat PDF. |
ZIP-fil som innehaller delade PDF-filercurl -X POST https://freefiletools.io/api/pdf-split \
-H "x-api-key: fft_your_api_key" \
-F "[email protected]" \
-F "ranges=1-3,5,7-9" \
-o split-pages.zipPDF-komprimering
/api/pdf-compressKomprimera en PDF-fil for att minska dess storlek. Anvander Ghostscript for hogkvalitativ komprimering.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file | File | Required | PDF-fil att komprimera |
level | string | Optional | Komprimeringsniva: "low", "medium" eller "high". Standard: "medium" |
Komprimerad PDF-filcurl -X POST https://freefiletools.io/api/pdf-compress \
-H "x-api-key: fft_your_api_key" \
-F "[email protected]" \
-F "level=high" \
-o compressed.pdfPDF till Word
/api/pdf-to-wordKonvertera en PDF-fil till ett Microsoft Word (.docx)-dokument.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file | File | Required | PDF-fil att konvertera |
DOCX-filcurl -X POST https://freefiletools.io/api/pdf-to-word \
-H "x-api-key: fft_your_api_key" \
-F "[email protected]" \
-o document.docxPDF till bild
/api/pdf-to-imageKonvertera PDF-sidor till bilder. Returnerar en ZIP-fil med en bild per sida.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file | File | Required | PDF-fil att konvertera |
format | string | Optional | Bildformat: "png", "jpg" eller "webp". Standard: "png" |
dpi | number | Optional | Upplosning i DPI. Standard: 150 |
ZIP-fil som innehaller bildercurl -X POST https://freefiletools.io/api/pdf-to-image \
-H "x-api-key: fft_your_api_key" \
-F "[email protected]" \
-F "format=png" \
-F "dpi=300" \
-o pages.zipPDF till Excel
/api/pdf-to-excelKonvertera en PDF-fil till ett Microsoft Excel (.xlsx)-kalkylblad. Fungerar bast med PDF-filer som innehaller tabelldata.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file | File | Required | PDF-fil att konvertera |
XLSX-filcurl -X POST https://freefiletools.io/api/pdf-to-excel \
-H "x-api-key: fft_your_api_key" \
-F "[email protected]" \
-o document.xlsxPDF till PowerPoint
/api/pdf-to-pptKonvertera en PDF-fil till en Microsoft PowerPoint (.pptx)-presentation.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file | File | Required | PDF-fil att konvertera |
PPTX-filcurl -X POST https://freefiletools.io/api/pdf-to-ppt \
-H "x-api-key: fft_your_api_key" \
-F "[email protected]" \
-o presentation.pptxWord till PDF
/api/word-to-pdfKonvertera ett Microsoft Word (.docx)-dokument till PDF.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file | File | Required | .docx-fil att konvertera |
PDF-filcurl -X POST https://freefiletools.io/api/word-to-pdf \
-H "x-api-key: fft_your_api_key" \
-F "[email protected]" \
-o document.pdfPowerPoint till PDF
/api/ppt-to-pdfKonvertera en Microsoft PowerPoint (.pptx)-presentation till PDF.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file | File | Required | .pptx-fil att konvertera |
PDF-filcurl -X POST https://freefiletools.io/api/ppt-to-pdf \
-H "x-api-key: fft_your_api_key" \
-F "[email protected]" \
-o presentation.pdfExcel till PDF
/api/excel-to-pdfKonvertera ett Microsoft Excel (.xlsx)-kalkylblad till PDF.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file | File | Required | .xlsx-fil att konvertera |
PDF-filcurl -X POST https://freefiletools.io/api/excel-to-pdf \
-H "x-api-key: fft_your_api_key" \
-F "[email protected]" \
-o spreadsheet.pdfSkydda PDF
/api/protect-pdfLosenordsskydda en PDF-fil. Den resulterande PDF-filen kraver ett losenord for att oppnas.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file | File | Required | PDF-fil att skydda |
password | string | Required | Losenord att satta pa PDF-filen |
Losenordsskyddad PDF-filcurl -X POST https://freefiletools.io/api/protect-pdf \
-H "x-api-key: fft_your_api_key" \
-F "[email protected]" \
-F "password=mysecretpassword" \
-o protected.pdfLas upp PDF
/api/unlock-pdfTa bort losenordsskydd fran en PDF-fil. Kraver det aktuella losenordet.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file | File | Required | Losenordsskyddad PDF-fil |
password | string | Required | Aktuellt losenord for PDF-filen |
Upplast PDF-filcurl -X POST https://freefiletools.io/api/unlock-pdf \
-H "x-api-key: fft_your_api_key" \
-F "[email protected]" \
-F "password=mysecretpassword" \
-o unlocked.pdfRotera PDF
/api/rotate-pdfRotera alla sidor i en PDF-fil med en angiven vinkel.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file | File | Required | PDF-fil att rotera |
angle | number | Required | Rotationsvinkel: 90, 180 eller 270 grader |
Roterad PDF-filcurl -X POST https://freefiletools.io/api/rotate-pdf \
-H "x-api-key: fft_your_api_key" \
-F "[email protected]" \
-F "angle=90" \
-o rotated.pdfVattenmark PDF
/api/watermark-pdfLagg till en textvattenstampel pa alla sidor i en PDF-fil.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file | File | Required | PDF-fil att vattenmarkera |
text | string | Required | Vattenstampeltext att lagga till |
Vattenmarkerad PDF-filcurl -X POST https://freefiletools.io/api/watermark-pdf \
-H "x-api-key: fft_your_api_key" \
-F "[email protected]" \
-F "text=CONFIDENTIAL" \
-o watermarked.pdfOCR PDF
/api/ocr-pdfTillampla optisk teckenigenkanning (OCR) pa en skannad PDF, sa att texten blir valbar och sokbar. Anvander Tesseract OCR-motor.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file | File | Required | Skannad PDF-fil |
language | string | Optional | OCR-sprak: "eng" (engelska), "tur" (turkiska), "deu" (tyska), etc. Standard: "eng" |
Sokbar PDF-filcurl -X POST https://freefiletools.io/api/ocr-pdf \
-H "x-api-key: fft_your_api_key" \
-F "[email protected]" \
-F "language=eng" \
-o searchable.pdfReparera PDF
/api/repair-pdfForsok att reparera en korrupt eller skadad PDF-fil.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file | File | Required | Korrupt PDF-fil |
Reparerad PDF-filcurl -X POST https://freefiletools.io/api/repair-pdf \
-H "x-api-key: fft_your_api_key" \
-F "[email protected]" \
-o repaired.pdfBeskar PDF
/api/crop-pdfBeskar alla sidor i en PDF-fil, ta bort tomrum eller trimma till ett specifikt omrade.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file | File | Required | PDF-fil att beskara |
Beskuren PDF-filcurl -X POST https://freefiletools.io/api/crop-pdf \
-H "x-api-key: fft_your_api_key" \
-F "[email protected]" \
-o cropped.pdfLagg till sidnummer
/api/page-numbersLagg till sidnummer pa alla sidor i en PDF-fil.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file | File | Required | PDF-fil |
PDF-fil med sidnummercurl -X POST https://freefiletools.io/api/page-numbers \
-H "x-api-key: fft_your_api_key" \
-F "[email protected]" \
-o numbered.pdfBild till PDF
/api/img-to-pdfKonvertera en eller flera bilder till en PDF-fil. Varje bild blir en sida.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
files | File[] | Required | Bildfiler (JPG, PNG, WebP) |
PDF-filcurl -X POST https://freefiletools.io/api/img-to-pdf \
-H "x-api-key: fft_your_api_key" \
-F "[email protected]" \
-F "[email protected]" \
-F "[email protected]" \
-o images.pdfPDF till PDF/A
/api/pdf-to-pdfaKonvertera en PDF-fil till PDF/A-format for langtidsarkivering. Anvander Ghostscript for konvertering.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file | File | Required | PDF-fil att konvertera |
PDF/A-filcurl -X POST https://freefiletools.io/api/pdf-to-pdfa \
-H "x-api-key: fft_your_api_key" \
-F "[email protected]" \
-o document-pdfa.pdf