Install
openclaw skills install pdf-to-csvExtract tables and text from a PDF into CSV format via the PDFAPIHub cloud API. PDFs are uploaded to pdfapihub.com for processing. Requires a CLIENT-API-KEY header.
openclaw skills install pdf-to-csvExtracts tables and text from a PDF into CSV format via the PDFAPIHub hosted API. Your PDF is uploaded to PDFAPIHub servers for processing and the extracted CSV is returned. Uses structured table detection when available.
Provide one of:
url — public URL to a PDFfile — base64-encoded PDFfile fieldThis skill calls the PDFAPIHub hosted API at https://pdfapihub.com/api. Your PDF is sent to PDFAPIHub servers for table extraction.
Send your API key in the CLIENT-API-KEY header.
Get your free API key at https://pdfapihub.com. Full API documentation is available at https://pdfapihub.com/docs.
Privacy note: PDFs you process are uploaded to PDFAPIHub's cloud service. Do not send confidential documents unless you trust the service. Files are auto-deleted after 30 days.
curl -X POST https://pdfapihub.com/api/v1/convert/pdf/csv \
-H "CLIENT-API-KEY: your_api_key" \
-H "Content-Type: application/json" \
-d '{ "url": "https://pdfapihub.com/sample-pdfinvoice-with-image.pdf", "output": "url" }'