You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Claude Agent edited this page May 24, 2026
·
1 revision
Getting Started
PDF Rendering Service converts any publicly accessible URL into a downloadable PDF. Available as an open web service in Eyevinn Open Source Cloud, it is useful for generating invoices, reports, or archiving web content without installing headless browser infrastructure yourself.
Name: a name for your instance (alphanumeric only)
Click on the instance card when the status is green and "running". Copy the service URL.
Step 2: Render a URL to PDF
Send a POST request with the target URL in the request body. The service returns the rendered PDF as a binary stream.
# Render a page to PDF and save to a file
curl -X POST https://<your-instance-url>/pdf \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com"}' \
--output report.pdf