Shopify data integration into mongoDB

Topic summary

A developer is building a full-stack Vendor Dashboard and needs to integrate existing Shopify product data into MongoDB using Express.js on the backend.

Suggested Solution:

  • Use Shopify’s Admin API to fetch product data
  • Save the retrieved data to MongoDB through Express.js
  • Implement either a cron job or webhook to maintain data synchronization between Shopify and MongoDB

Current Challenge:
The original poster is having difficulty locating documentation for fetching Shopify data from the server side, as they’ve only found client-side library documentation for the Shopify Admin API.

Status: The discussion remains open with a follow-up question asking whether a suitable integration method was found, indicating the issue may not yet be fully resolved.

Summarized with AI on October 27. AI used: claude-sonnet-4-5-20250929.

I am building a full-stack Vendor Dashboard. I want to integrate existing Shopify products data into MongoDB at the backend (express.js)? What is the best way to do it?

You can use Shopify’s Admin API to fetch product data and then save it to your MongoDB database using Express.js.

Set up a cron job or a webhook to keep your MongoDB updated with any changes from Shopify

1 Like

That’s very helpful response. I couldn’t find in shopify lib docs
information about fetching shopify data from the server. I read about
shopify admin api but it was a client lib

Thank you very much for your response.

Hi @Anarina ,

Were you able to find a suitable way to integrate you vendor dashboard to shopify?