Skip to main content

SF-0228 · Concept · Easy

Which salesforce edition supports Data loader?

✓ Verified by Vikas Singhal · Last reviewed 5/17/2026 · Updated for Spring '26

Data Loader uses the SOAP API and Bulk API to talk to Salesforce. So the rule is simple: any edition that exposes those APIs supports Data Loader, any edition that doesn’t, can’t.

Editions that support Data Loader out of the box

  • Enterprise Edition — yes
  • Performance Edition — yes
  • Unlimited Edition — yes
  • Developer Edition — yes (great for testing without spending money)
  • Database.com — yes
  • Government Cloud / Financial Services Cloud / Health Cloud — yes (built on Enterprise/Unlimited)

These editions ship with API access included, so any user with the API Enabled permission can connect via Data Loader.

Editions that don’t support Data Loader by default

  • Essentials Edition — no API access
  • Professional Edition — no API access by default; available as a paid API access add-on
  • Group Edition (legacy) — no API access
  • Contact Manager Edition (legacy) — no API access

If a customer on Professional needs Data Loader, they have to buy the API access SKU. On Essentials and Group, the standard answer is “use the Data Import Wizard” (which works in the browser without API access) or migrate to a higher edition.

What controls the actual permission

Even on a supporting edition, two things still have to be true for a specific user to use Data Loader:

  1. Edition supports API (the rule above).
  2. User profile or permission set has API Enabled ticked.

For hard delete or bulk-only operations, add the Bulk API Hard Delete permission.

Quick reference table

EditionData Loader?Notes
EssentialsNoUse Data Import Wizard
GroupNoLegacy; no API
ProfessionalAdd-onBuy “API access” pack
EnterpriseYesStandard
PerformanceYesStandard
UnlimitedYesStandard
DeveloperYesFree, perfect for practice
Database.comYesStandard

How to confirm in an org

If you’re not sure which edition an org is on:

  1. Setup → Company Information → see Organization Edition.
  2. Try logging Data Loader in. If you get API_DISABLED_FOR_ORG, the edition doesn’t expose the API.

The Salesforce-version-of-the-tool footnote

There are now two Data Loaders:

  • Data Loader for macOS / Windows — the long-running Java desktop app.
  • Data Loader (in-org, web-based) — newer, opens from Setup → Data Loader.

Both depend on API access. The edition rule above applies to both.

Verified against: Data Loader Guide — System Requirements, Salesforce Help — Edition Comparison, Metadata API Developer Guide. Last reviewed 2026-05-17 for Spring ‘26 release.