Flimpa API

File processing API

Async PDF compression and image conversion. Upload a file, receive a taskId, poll until complete, then download the result.

Production API base: https://flimpa.com/api/v1

Quick start

Create a task, poll status, download the result.

API reference

OpenAPI specification for /api/v1 endpoints.

Authentication

Anonymous IP limits and X-API-Key tiers.

Example

curl -X POST https://flimpa.com/api/v1/tasks \
  -F "operation=compress-pdf" \
  -F "file=@document.pdf"

curl https://flimpa.com/api/v1/tasks/<taskId> \
  -H "X-Task-Access-Token: <accessToken>"