AdvancedIntegrations
Advanced

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.

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.

API and Webhook Usage

MakeItEarn exposes REST APIs and webhooks for advanced workflows. Base URL: https://api.makeitearn.com/v1.

path
shopify-storesPOST
Required

Endpoint to create or sync Shopify stores.

header
Authorizationstring
Required

Bearer {YOUR_API_KEY}.

body
store_urlstring
Required

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'
  })
});

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.

Was this page helpful?
Built with Documentation.AI

Last updated today