Skip to main content
The Coupang group powers the Coupang Make.com app — pull seller order sheets and consumer orders.

Authentication

Send the MMK X-API-KEY — that’s the only credential the caller handles. Your Coupang token is set once on the connection page in the Magic Meal Kits app and resolved server-side, so no per-request token header is needed — see Authentication.
Order sheets and category lookup are Basic. The two consumer-order endpoints (orders, flattened-orders) are Pro — a Basic key gets 400 you are not a magic meal kits PRO user.

Endpoints

EndpointTierWhat it does
POST /coupang/ordersheetsBasicSeller order sheets for a created-at window
POST /coupang/categoryBasicLook up a display category
POST /coupang/ordersProConsumer orders (paged by pageIndex/pageSize/year)
POST /coupang/flattened-ordersProConsumer orders flattened to one row per item

Notes

  • Order sheets take a created-at window (createdAtFrom / createdAtTo, optional status). Consumer orders take pageIndex / pageSize / year instead.
  • Flattened orders give you one row per order item — handy when mapping straight into a spreadsheet or downstream module.
Use the interactive playground to try a request with your own deployment host, API key, and Coupang token.