diff --git a/en/application-dev/reference/apis/js-apis-i18n.md b/en/application-dev/reference/apis/js-apis-i18n.md
index 24339fc434b3afe97cf0f5ebbbfd1862f86c6e6e..0abc724302fcf89b86421b90c0bb507f1894b312 100644
--- a/en/application-dev/reference/apis/js-apis-i18n.md
+++ b/en/application-dev/reference/apis/js-apis-i18n.md
@@ -673,6 +673,32 @@ Formats a phone number.
phonenumberfmt.format("15812312312");
```
+### getLocationName8+
+
+static getLocationName(number: string, locale: string): string
+
+Obtains the home location of a phone number.
+
+**System capability**: SystemCapability.Global.I18n
+
+**Parameters**
+| Name | Type | Mandatory | Description |
+| ------ | ------ | ---- | ---------- |
+| number | string | Yes | Phone number.|
+| locale | string | Yes | Locale ID.|
+
+**Return value**
+| Type | Description |
+| ------ | ---------- |
+| string | Home location of the phone number.|
+
+**Example**
+ ```
+ var location = i18n.PhoneNumberFormat.getLocationName('15812312345', 'zh-CN');
+ ```
+
+
+
## PhoneNumberFormatOptions8+