apideck-unified-api
Installation
SKILL.md
Apideck Unified API
The pitch
Apideck is one abstraction across 146+ SaaS connectors. Instead of integrating Salesforce, HubSpot, and Pipedrive separately, you write against the CRM unified API once and point it at any of them via serviceId. The same logic applies to Accounting (34 connectors), HRIS (58), ATS, File Storage, Issue Tracking, and Ecommerce.
// One codebase, any CRM
await apideck.crm.contacts.list({ serviceId: "salesforce" });
await apideck.crm.contacts.list({ serviceId: "hubspot" });
await apideck.crm.contacts.list({ serviceId: "pipedrive" });
// Add a new connector later? No code change.
await apideck.crm.contacts.list({ serviceId: "attio" });
This is the compounding advantage. Every new connector Apideck adds becomes available to your app for free. No new SDK, no new auth flow, no new pagination logic.