# 中文人名转拼音
>[danger] 免费接口,每日100次免费调用
## 接口调用([调用须知](https://www.kancloud.cn/chimney/cn-api/2491302))
>[info] 中文人名转拼音,更精准的转换
## 请求地址
~~~
GET https://api.cnbook.top/lang/person_name
~~~
## 请求参数
| 名称 | 必填 | 类型 | 说明 |
| --- | --- | --- | --- |
| text | 是 | string | 中文人名,一次最多1000个字 |
## 返回结果说明
| 名称 | 类型 | 类型 | 说明 |
| --- | --- | --- | --- |
| pinyin | string | shan mou mou John Reed | 拼音 |
| pinyin_tone | string | shàn mǒu mǒu John Reed | 有声调的拼音 |
| abbr | string | smmJR | 拼音首字母缩写 |
#### 返回示例
~~~
{
"code": 0,
"message": "success",
"data": {
"pinyin": "shan mou mou John Reed",
"pinyin_tone": "shàn mǒu mǒu John Reed",
"abbr": "smmJR"
},
"trace": 1634142237
}
~~~