3.6.12. Localization in API Routes

In this chapter, you'll learn how to handle localization in API routes of your Medusa application to serve content in different languages.

Overview#

Localization in API routes allows you to serve translated content based on the user's preferred language. The Medusa application provides built-in support for handling locale information in API requests and retrieving localized data.

When a locale is specified in a request, you can use it to retrieve translated versions of your data models' fields, providing a seamless multilingual experience for your users.

Learn more about translation, how to manage translations, and how to translate custom data models in the Translation Module documentation.


Routes with Localization Enabled by Default#

The Medusa application automatically supports retrieving localized content from all routes under the /store prefix, including both core and custom store API routes.

For example, the following store routes have localization enabled by default:

  • /store/products -> Get products with translated fields
  • /store/collections -> Get collections with translated fields
  • /store/categories -> Get categories with translated fields

Refer to the Translation Module documentation for a list of supported core data models with localization support.

Apply Localization to Custom Routes#

If you're creating custom API routes outside the /store prefix, you must manually apply the applyLocale middleware to enable localization support.

To apply the applyLocale middleware to all HTTP methods for a route, add it to the src/api/middlewares.ts file:

src/api/middlewares.ts
1import { applyLocale, defineMiddlewares } from "@medusajs/framework/http"2
3export default defineMiddlewares({4  routes: [5    {6      matcher: "/custom*",7      middlewares: [applyLocale],8    },9  ],10})

This applies the applyLocale middleware to all routes matching /custom*, regardless of the HTTP method.

Alternatively, you can apply the middleware only to specific HTTP methods using the method property:

src/api/middlewares.ts
1import { applyLocale, defineMiddlewares } from "@medusajs/framework/http"2
3export default defineMiddlewares({4  routes: [5    {6      matcher: "/custom*",7      method: ["GET"],8      middlewares: [applyLocale],9    },10  ],11})
Tip: Learn more about middlewares in the Middlewares chapter.

How to Pass Locale in API Requests#

You can pass the locale in API requests to routes that support localization using either of the following methods:

  1. The locale query parameter
  2. The x-medusa-locale request header

The query parameter takes priority over the header if both are provided.

The locale must follow the IETF BCP 47 standard, such as en-US for English (United States) or fr-FR for French (France).

Using the JS SDK? Refer to the JS SDK reference for details on how to pass locale.

For example:

The above examples retrieve products with their fields translated to French (France) if translations are available. If no translations exist for the requested locale, the original content stored in the data model is returned.

Note: Store API routes require a publishable API key in the request header. Learn more in the Store API reference.

Access Request Locale in API Routes#

After applying the applyLocale middleware, you can access the request's locale from the locale property of the MedusaRequest object.

For example:

src/api/custom/route.ts
1import type {2  MedusaRequest,3  MedusaResponse,4} from "@medusajs/framework/http"5
6export const GET = async (7  req: MedusaRequest,8  res: MedusaResponse9) => {10  const locale = req.locale11
12  // use locale to retrieve localized data...13}

The req.locale property contains the locale value from either the query parameter or the request header. If no locale is specified in the request, req.locale is undefined.

Retrieve Localized Data with Query#

To retrieve data models with translated fields, pass the locale property in the second parameter object of Query when querying your data.

For example, to retrieve products with translated names and descriptions:

src/api/store/products/route.ts
1import type { MedusaRequest, MedusaResponse } from "@medusajs/framework/http"2
3export const GET = async (req: MedusaRequest, res: MedusaResponse) => {4  const query = req.scope.resolve("query")5
6  const { data: products } = await query.graph(7    {8      entity: "product",9      fields: ["id", "title", "description"],10    },11    {12      locale: req.locale,13    }14  )15
16  res.json({ products })17}

In this example, the products are retrieved with their title and description fields translated to the locale specified in the request.

Learn more in the Query chapter.

Retrieve Localized Data for Custom Models#

You can also retrieve localized data for custom data models. Learn more in the Translate Custom Data Models guide.

Was this chapter helpful?
Ask Anything
Ask any questions about Medusa. Get help with your development.
You can also use the Medusa MCP server in Cursor, VSCode, etc...
FAQ
What is Medusa?
How can I create a module?
How can I create a data model?
How do I create a workflow?
How can I extend a data model in the Product Module?
Recipes
How do I build a marketplace with Medusa?
How do I build digital products with Medusa?
How do I build subscription-based purchases with Medusa?
What other recipes are available in the Medusa documentation?
Chat is cleared on refresh
Line break