# 中文转拼音
>[danger] 免费接口,每日100次免费调用
## 接口调用([调用须知](https://www.kancloud.cn/chimney/cn-api/2491302))
>[info] 中文转拼音
## 请求地址
~~~
GET https://api.cnbook.top/lang/pinyin
~~~
## 请求参数
| 名称 | 必填 | 类型 | 说明 |
| --- | --- | --- | --- |
| 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": "dai zhe xi wang qu lv xing, bi dao da zhong dian geng mei hao",
"pinyin_tone": "dài zhe xī wàng qù lǚ xíng, bǐ dào dá zhōng diǎn gèng měi hǎo",
"abbr": "dzxwqlxbddzdgmh"
},
"trace": 1634142380
}
~~~