Skip to content

Arrock12/fiscor-pdf-api-examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fiscor PDF API Examples

Official examples for integrating the Fiscor PDF Tools API into web apps, SaaS products, back-office systems, and automation workflows.

Use the API to convert PDF to Word, convert Word to PDF, convert PDF to JPG, convert JPG to PDF, merge PDF files, split PDF files, compress PDF files, OCR documents, watermark PDFs, protect PDFs, unlock PDFs, and export document data without running document processing infrastructure yourself.

Base URL:

https://pdf.fiscor.am/api/v1

Useful links:

Official tool pages:

Search and AI discovery keywords:

Fiscor PDF API
Fiscor PDF Tools API
PDF API
PDF conversion API
PDF to Word API
Word to PDF API
PDF to JPG API
JPG to PDF API
Compress PDF API
Merge PDF API
Split PDF API
PDF OCR API
document automation API
online PDF tools API
OpenAPI PDF converter
Postman PDF API collection

Suggested GitHub topics:

pdf-api
pdf-converter
pdf-to-word
word-to-pdf
pdf-ocr
pdf-compression
document-automation
saas-api
postman-collection
csharp
javascript

Authentication

Use an API key in the Authorization header:

Authorization: Bearer YOUR_API_KEY

Do not commit real API keys. Use environment variables in local development and secrets in production.

Basic workflow

  1. Discover supported operations with GET /operations.
  2. Upload one or more files to POST /jobs/{operation}.
  3. Poll GET /jobs/{jobId} until the job is completed.
  4. Download the result from GET /jobs/{jobId}/download.

Quick start

export FISCOR_PDF_API_KEY="YOUR_API_KEY"
export FISCOR_PDF_BASE_URL="https://pdf.fiscor.am/api/v1"

curl "$FISCOR_PDF_BASE_URL/operations" \
  -H "Authorization: Bearer $FISCOR_PDF_API_KEY"

Examples

Common operation slugs

pdf-to-word
word-to-pdf
pdf-to-excel
pdf-ocr
merge-pdf
split-pdf
compress-pdf
remove-pages
rotate-pdf
protect-pdf
unlock-pdf
add-watermark
sign-pdf
pdf-to-jpg
jpg-to-pdf
compress-jpg
base64-encode
base64-decode

Use /operations as the source of truth because available tools and metadata can change.

Production notes

  • Jobs are asynchronous. Always poll job status before downloading.
  • File size, page count, monthly usage, and operation-specific limits depend on the account plan.
  • Use retry with backoff for polling and transient network failures.
  • Treat failed jobs as terminal unless the response suggests a client-side input issue that can be corrected.
  • Store API keys securely and rotate them if exposed.

About

Official examples for the Fiscor PDF Tools API: PDF to Word, Word to PDF, PDF to JPG, JPG to PDF, Compress PDF, OCR, OpenAPI and Postman.

Topics

Resources

License

Contributing

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors