diff --git a/templates/types/simple/express/README-template.md b/templates/types/simple/express/README-template.md
index 2da2865d5df6d375677892968d9195f3bdaaa7f2..98ebc4e49c9545ab03c2ec08d1c01028363b11a7 100644
--- a/templates/types/simple/express/README-template.md
+++ b/templates/types/simple/express/README-template.md
@@ -17,7 +17,7 @@ npm run dev
 Then call the express API endpoint `/api/chat` to see the result:
 
 ```
-curl --location 'localhost:3000/api/chat' \
+curl --location 'localhost:8000/api/chat' \
 --header 'Content-Type: application/json' \
 --data '{ "messages": [{ "role": "user", "content": "Hello" }] }'
 ```
diff --git a/templates/types/simple/express/index.ts b/templates/types/simple/express/index.ts
index 90ce98b6d43f3ed1cd8fc08745369b713d934d60..a1bef65d6526065382b75171952d6428fd15bce2 100644
--- a/templates/types/simple/express/index.ts
+++ b/templates/types/simple/express/index.ts
@@ -3,7 +3,7 @@ import express, { Express, Request, Response } from "express";
 import chatRouter from "./src/routes/chat.route";
 
 const app: Express = express();
-const port = 3000;
+const port = 8000;
 
 app.use(express.json());
 
diff --git a/templates/types/streaming/express/README-template.md b/templates/types/streaming/express/README-template.md
index 2da2865d5df6d375677892968d9195f3bdaaa7f2..98ebc4e49c9545ab03c2ec08d1c01028363b11a7 100644
--- a/templates/types/streaming/express/README-template.md
+++ b/templates/types/streaming/express/README-template.md
@@ -17,7 +17,7 @@ npm run dev
 Then call the express API endpoint `/api/chat` to see the result:
 
 ```
-curl --location 'localhost:3000/api/chat' \
+curl --location 'localhost:8000/api/chat' \
 --header 'Content-Type: application/json' \
 --data '{ "messages": [{ "role": "user", "content": "Hello" }] }'
 ```
diff --git a/templates/types/streaming/express/index.ts b/templates/types/streaming/express/index.ts
index 90ce98b6d43f3ed1cd8fc08745369b713d934d60..a1bef65d6526065382b75171952d6428fd15bce2 100644
--- a/templates/types/streaming/express/index.ts
+++ b/templates/types/streaming/express/index.ts
@@ -3,7 +3,7 @@ import express, { Express, Request, Response } from "express";
 import chatRouter from "./src/routes/chat.route";
 
 const app: Express = express();
-const port = 3000;
+const port = 8000;
 
 app.use(express.json());