PDF to Excel
Downloads a PDF from a public URL and extracts tables into sheets. Best on text-based PDFs with real tables. Page count is capped on the worker.
receipt_long
Why 20 credits?
Table extraction walks every page and builds a workbook - similar worker time to PDF-to-Word.
Any HTTP client works. Replace the key with one from your dashboard.
bash
curl -X POST https://toolkitbackend-j69m.onrender.com/api/v1/tools/pdf-to-excel \
-H "Authorization: Bearer tb_live_<your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"fileUrl": "https://example.com/tables.pdf"
}'Input
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
fileUrl | string | required | - | Publicly reachable URL of the PDF. |
Output
| Field | Type | Description |
|---|---|---|
fileBase64 | string | Converted XLSX, base64-encoded, without a data URI prefix. |
mimeType | string | application/vnd.openxmlformats-officedocument.spreadsheetml.sheet |
fileName | string | Suggested download name. |
sizeBytes | integer | Size of the decoded XLSX. |
Try it
Sends a real POST /api/v1/tools/pdf-to-excel from your browser and charges 20 credits to your account.
Sign in to run this endpoint. New accounts start with free credits.