PDF.co integration
PDF.co is a REST API platform for PDF automation including PDF extraction,…
- Provider
- pdf_co
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 35 available
Quick start
Call PDF.co from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to PDF.co's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"PDF_CO_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own PDF.co API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
35 actions exposed via the
PDF.co integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
PDF_CO_ACCOUNT_BALANCE_INFO -
PDF_CO_BARCODE_GENERATE -
PDF_CO_CONVERT_EXCEL_TO_CSV -
PDF_CO_CONVERT_EXCEL_TO_HTML -
PDF_CO_CONVERT_EXCEL_TO_JSON -
PDF_CO_CONVERT_EXCEL_TO_TEXT -
PDF_CO_CONVERT_EXCEL_TO_XML -
PDF_CO_DOCUMENT_PARSER -
PDF_CO_FILE_UPLOAD -
PDF_CO_JOB_CHECK -
PDF_CO_PDF_ADD -
PDF_CO_PDF_CHANGE_TEXT_SEARCHABLE
Show all 35 actions
-
PDF_CO_PDFCO_POST_BARCODE_GENERATE -
PDF_CO_PDFCO_POST_FILE_UPLOAD_BASE64 -
PDF_CO_PDF_DELETE_PAGES -
PDF_CO_PDF_EXTRACT_ATTACHMENTS -
PDF_CO_PDF_FIND -
PDF_CO_PDF_FORMS_INFO_READER -
PDF_CO_PDF_FROM_DOCUMENT_TXT -
PDF_CO_PDF_FROM_EMAIL -
PDF_CO_PDF_FROM_HTML -
PDF_CO_PDF_INFO_READER -
PDF_CO_PDF_MERGE -
PDF_CO_PDF_ROTATE -
PDF_CO_PDF_SEARCH_AND_DELETE_TEXT -
PDF_CO_PDF_SEARCH_AND_REPLACE_TEXT -
PDF_CO_PDF_SPLIT -
PDF_CO_PDF_TO_CSV -
PDF_CO_PDF_TO_HTML -
PDF_CO_PDF_TO_IMAGE -
PDF_CO_PDF_TO_JSON -
PDF_CO_PDF_TO_TEXT -
PDF_CO_PDF_TO_XLS -
PDF_CO_PDF_TO_XLSX -
PDF_CO_PDF_TO_XML
Build with PDF.co
Open OverSkill, describe what you want to build, and reference PDF.co in your prompt — the AI will wire up the integration automatically.