diff --git a/www/apps/book/app/learn/first-customizations/page.mdx b/www/apps/book/app/learn/first-customizations/page.mdx index b1e418f8dc..2eac731445 100644 --- a/www/apps/book/app/learn/first-customizations/page.mdx +++ b/www/apps/book/app/learn/first-customizations/page.mdx @@ -6,6 +6,10 @@ export const metadata = { In this chapter, you’ll build your first customizations with Medusa. +You'll create a `GET` API route at the path `/hello-world`. An API route exposes your application's commerce features to frontend clients, such as the admin dashboard or a storefront. + +Medusa has [Store](!api!/store) and [Admin](!api!/admin) API routes, and you can create custom API routes for your custom features. + ## 1. Create API Route API Routes expose business logic through REST APIs. You can create custom API routes to expose custom business logic.