Developer API v1.0
Documentation
Learn how to integrate PDF.beauty into your workflow
Quick Start
python — example.py
import requests
url = "https://api.pdf.beauty/v1/convert"
files = {"file": open("presentation.pdf", "rb")}
headers = {"Authorization": "Bearer pk_xxxxxxxxxxxxx"}
response = requests.post(url, files=files, headers=headers)
print(response.json())