Pricing
This page covers LinkedIn API pricing for our two products: Account API and Data API. For details about product differences, see the products overview page.
Account API Pricing
Account API is available in Core and Plus plans. Billing is based on the number of connected LinkedIn accounts (seats).
Feature | Core | Plus |
---|---|---|
Unlimited workflow execution. | ✅ | ✅ |
Industry-leading safety. | ✅ | ✅ |
Access to standard actions. | ✅ | ✅ |
Access to Sales Navigator actions. | ❌ | ✅ |
All available integrations. | ❌ | ✅ |
_______ | _______ | |
Monthly Price (annual billing) | $49/seat | $74/seat |
Monthly Price (monthly billing) | $69/seat | $99/seat |
sales@linkedapi.io
.Data API Pricing
Data API uses a credit-based pricing where 100 credits = $1
. You add credits to your balance and spend them on executing data retrieval workflows.
The cost of each workflow is calculated as the sum of all action costs that were used within that workflow. Credit costs for each action are listed in the table below.
Action | Credit Cost |
---|---|
searchCompanies | 10 |
searchPeople | 10 |
openCompanyPage | 10 |
retrieveCompanyEmployees | 10 |
retrieveCompanyDMs | 5 |
retrieveCompanyPosts | 5 |
openPersonPage | 10 |
retrievePersonExperience | 5 |
retrievePersonEducation | 5 |
retrievePersonSkills | 2 |
retrievePersonLanguages | 2 |
retrievePersonPosts | 4 |
retrievePersonComments | 4 |
retrievePersonReactions | 4 |
openPost | 5 |
doForCompanies | 0 (free) |
doForPeople | 0 (free) |
Below are examples of cost calculations for various workflows – from simple to complex:
Example 1: Simple сompany search
Suppose you need to find tech companies in San Francisco. For this task, your workflow would use the searchCompanies
action once.
Workflow composition:
- 1 ×
searchCompanies
action cost = 1 × 10 = 10 credits.
Total workflow cost: 10 credits.
Example 2: Company search with basic information
Suppose you need to find tech companies in San Francisco and retrieve basic information for the first 3 results (by setting limit
parameter to 3). For this task, your workflow would look like:
searchCompanies
→ doForCompanies
→ openCompanyPage
Workflow composition:
- 1 ×
searchCompanies
action cost = 1 × 10 = 10 credits. - 3 ×
openCompanyPage
action cost = 3 × 10 = 30 credits. doForCompanies
action cost = 0 credits (free action).
Total workflow cost: 10 + 30 + 0 = 40 credits.
Example 3: Retrieving multiple person data
Suppose you want to retrieve a person's basic information, education, experience, and skills. Your workflow would look like:
openPersonPage
→ retrievePersonExperience
, retrievePersonEducation
, retrievePersonSkills
Workflow composition:
- 1 ×
openPersonPage
action cost = 1 × 10 = 10 credits. - 1 ×
retrievePersonExperience
action cost = 1 × 5 = 5 credits. - 1 ×
retrievePersonEducation
action cost = 1 × 5 = 5 credits. - 1 ×
retrievePersonSkills
action cost = 1 × 2 = 2 credits.
Total workflow cost: 10 + 5 + 5 + 2 = 22 credits.