Quick Start
Get your first Akeneo export running in 5 minutes.
Goal: By the end of this guide, you'll have exported products from your Akeneo PIM to your own database.
Prerequisites
Create Your Account
The platform uses Clerk for secure authentication, supporting email/password and Google SSO.
- Visit Akeneo Exporter and click "Get Started"
- Choose your sign-up method and verify your email
- Complete your profile β redirected to dashboard
Dashboard sections: Configurations (saved setups) β’ Exports (history) β’ Enrichers (transformation rules)
Connect Your Akeneo PIM
Connect using OAuth 2.0 credentials. All credentials are encrypted with AES-256-GCM.
{
"url": "https://your-company.akeneo.cloud",
"clientId": "3_abc123xyz",
"secret": "your_secret_key_here",
"username": "api_user",
"password": "secure_password",
"scope": "ecommerce" // Optional: channel filter
}Configure Your Destination
Your data is written to your own database β not stored on our servers. Collections/tables are created automatically.
Flexible schema, hierarchical data, fast retrieval
mongodb://user:pass@host:27017/products
# MongoDB Atlas
mongodb+srv://user:pass@cluster.mongodb.net/dbStructured queries, joins, ACID compliance
postgresql://user:pass@host:5432/products
# With SSL
postgresql://user:pass@host:5432/db?sslmode=requireIn the UI: Select database type β Enter connection URI β Specify database name β Test Connection
Run Your First Export
Exports run asynchronously in the background. You can monitor progress in real-time or return later.
Verify It Works
Connect to your database and query the exported data:
db.products.findOne()
// Output:
{
"_id": "tshirt-red-m",
"family": "clothing",
"attributes": {
"name": "Red T-Shirt",
"price": 29.99
}
}SELECT * FROM products LIMIT 1;
-- Output:
| code | family |
|--------------|----------|
| tshirt-red-m | clothing |Next Steps
Add Enrichers
Transform and enrich your data during export
Advanced Configuration
Set up incremental exports and filters