Complete API and integrations
AKIDEL offers you a complete REST API to automate your LinkedIn prospecting, email campaigns and manage all your sales processes.
Explore integrationsAutomate your LinkedIn actions and generate qualified leads
LinkedIn Messages
LinkedIn Invitations
LinkedIn Targeting
LinkedIn Prospecting
LinkedIn Sales Navigator
LinkedIn Outreach
Email Marketing
Create and automate your email campaigns
Email Campaigns
Email Signatures
Email Templates
Email Tracking
Email Automation
SMS Marketing
CRM & Management
Manage your contacts, teams and organizations
Contact Lists
Organizations
Teams Management
User Roles
Permissions
Data Fields
Automation
Automate your processes with intelligent workflows
Zapier
Webhooks
Workflows
Cron Jobs
Forms
API Integration
Analytics & Reporting
Analyze your performance and optimize your results
Statistics
Reporting
Google Targeting
Database Targeting
URL Shortener
Performance Tracking
Advanced Tools
Advanced features for experienced users
OVH Integration
File Management
Blacklists
Tags System
Subscriptions
Reseller Program
Powerful and flexible integrations
Our platform adapts to your existing technology stack
Complete REST API
Access all AKIDEL features via our documented REST API
LinkedIn Automation
Automate your LinkedIn messages, invitations and prospecting
Complete contact management
Manage your contact lists, organizations and teams in real time
Intelligent workflows
Create advanced automations with our workflows and webhooks
Build your own integrations
Our REST API 2.0 gives you access to all AKIDEL features: contact management, LinkedIn automation, email campaigns and much more.
- REST API v2.0 with OpenAPI documentation
- Complete endpoints for LinkedIn & Email
- Webhooks and workflow automation
- Zapier support and third-party integrations
// Example - Create a LinkedIn campaign
fetch('https://api.akidel.tech/workflows', {
method: 'POST',
headers: {
'Authorization': 'Bearer your_api_key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
name: 'Campagne LinkedIn Q4',
type: 'linkedin_outreach',
target_list_id: 'list_123',
message_template: 'template_456'
})
})
.then(response => response.json())
.then(data => console.log(data));