docs: change key in example (#4694)

diff --git a/docs/en/latest/getting-started.md b/docs/en/latest/getting-started.md
index aa413d8..21aef4b 100644
--- a/docs/en/latest/getting-started.md
+++ b/docs/en/latest/getting-started.md
@@ -262,7 +262,7 @@
 The correct way to access that route is to add a `Header` named `apikey` with the correct key, as shown in the code below:
 
 ```bash
-curl -i -X GET http://127.0.0.1:9080/get -H "Host: httpbin.org" -H 'apikey: superSecretAPIKey'
+curl -i -X GET http://127.0.0.1:9080/get -H "Host: httpbin.org" -H "apikey: key-of-john"
 ```
 
 ### Prefixing a Route
diff --git a/docs/zh/latest/getting-started.md b/docs/zh/latest/getting-started.md
index 1eeaf62..cc066ff 100644
--- a/docs/zh/latest/getting-started.md
+++ b/docs/zh/latest/getting-started.md
@@ -260,7 +260,7 @@
 访问那个路由的正确方式是添加一个带有正确密钥的名为 `apikey` 的 `Header`,如下方代码所示。
 
 ```bash
-curl -i -X GET http://127.0.0.1:9080/get -H "Host: httpbin.org" -H 'apikey: superSecretAPIKey'
+curl -i -X GET http://127.0.0.1:9080/get -H "Host: httpbin.org" -H "apikey: key-of-john"
 ```
 
 ### 为路由添加前缀