Platform Integrations and Partnerships
Understand how MakeItEarn integrates with Shopify, Amazon, and Kickstarter to streamline your e-commerce operations and maximize reach.
Overview
MakeItEarn provides seamless integrations with leading e-commerce platforms like Shopify, Amazon, and Kickstarter. You connect these services to automate store setup, manage seller accounts, launch crowdfunding campaigns, and handle third-party tools. Use webhooks and APIs to create custom workflows that scale your online brand.
All integrations require a valid MakeItEarn API key. Generate one from your dashboard at https://dashboard.makeitearn.com/api-keys.
Key Integrations
Explore the core platforms MakeItEarn supports through dedicated features.
Shopify
Automate store creation, theme optimization, and product syncing.
Amazon
Manage seller accounts, listings, and fulfillment efficiently.
Kickstarter
Launch and track crowdfunding projects with real-time updates.
Platform Setup Guides
Follow these platform-specific instructions to get started quickly.
Shopify Store Setup
Connect your Shopify store to MakeItEarn for automated optimization.
Create API Key
Log in to Shopify admin and generate a private app API key with read_products and write_themes scopes.
Link in Dashboard
In MakeItEarn dashboard, navigate to Integrations > Shopify and paste your store URL (https://yourstore.myshopify.com) and API credentials.
Optimize Store
Run the optimization wizard to auto-install apps and tweak themes.
Amazon Seller Account Management
Sync inventory and orders effortlessly.
Authorize Access
In Amazon Seller Central, create a developer app and note your MWS or SP-API credentials.
Configure Sync
Enter credentials in MakeItEarn under Integrations > Amazon, select marketplaces (e.g., US, EU).
Automate Listings
Enable auto-listing rules for new products.
Kickstarter Project Integration
Track pledges and fulfillment directly.
API Access
Create a Kickstarter API token via developer settings.
Connect Project
Paste project URL and token in MakeItEarn dashboard.
Monitor Campaign
Set up notifications for funding milestones.
API and Webhook Usage
MakeItEarn exposes REST APIs and webhooks for advanced workflows. Base URL: https://api.makeitearn.com/v1.
Endpoint to create or sync Shopify stores.
Bearer {YOUR_API_KEY}.
Your Shopify store URL, e.g., https://mystores.myshopify.com.
Webhook Example
Set up webhooks to receive real-time events like order updates.
// Register webhook for order.created events
const response = await fetch('https://api.makeitearn.com/v1/webhooks', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
event: 'order.created',
url: 'https://your-webhook-url.com/makeitearn'
})
});
curl -X POST https://api.makeitearn.com/v1/webhooks \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"event": "order.created",
"url": "https://your-webhook-url.com/makeitearn"
}'
Third-Party Tool Connections
Connect popular tools for extended functionality.
Use MakeItEarn's Zapier app to connect with 5000+ apps. Search for "MakeItEarn" in Zapier and authenticate with your API key. Common zaps include syncing Shopify orders to Google Sheets.
Next Steps
Advanced Workflows
Build custom automations with webhooks.
Troubleshooting
Common integration issues and fixes.
Last updated today