arrow_back All endpoints

PDF to Excel

POST/api/v1/tools/pdf-to-excel20 credits per callpdfexcelxlsxtablesconvert

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

FieldTypeRequiredDefaultDescription
fileUrlstringrequired- Publicly reachable URL of the PDF.

Output

FieldTypeDescription
fileBase64stringConverted XLSX, base64-encoded, without a data URI prefix.
mimeTypestringapplication/vnd.openxmlformats-officedocument.spreadsheetml.sheet
fileNamestringSuggested download name.
sizeBytesintegerSize 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.