Skip to main content

Endpoints

In this document, you’ll learn what endpoints are in Medusa.

Introduction

The Medusa Backend is a web server built on top of Express, a Node.js web framework. This provides developers with all the functionalities available within Express during development. One of those are endpoints.

Endpoints are REST APIs that allow a frontend or an external system to interact with the Medusa Backend to retrieve and process data, or perform business logic. Endpoints are Express routes.

Each commerce module contains a set of endpoints specific to the functionalities that it provides. Since the core package that powers the Medusa Backend acts as an orchestrator of commerce modules and exposes their endpoints, the endpoints of each of these commerce modules are available within the Medusa Backend.

The commerce modules provide two types of endpoints: Store APIs and Admin APIs. The Store APIs are typically accessed from the storefront. For example, you can use the Store APIs to show customers available products or implement a cart and checkout flow.

The Admin APIs are typically accessed from an admin dashboard. For example, you can use the Admin APIs to allow admins to manage the store’s data such as products, orders, and so on.


Custom Development

Aside from using the endpoints that commerce modules, developers can create their own REST APIs either directly in the Medusa Backend, in a plugin, or in a custom commerce module.

As the core Medusa package is completely customizable, developers can also extend the functionality even further to implement GraphQL endpoints.

Was this page helpful?