稳定、快速、免费的 API 接口服务
查询字词拼音
接口地址: https://api.52vmy.cn/api/wl/s/pinyin
返回格式: JSON
请求方式: GET
请求示例: https://api.52vmy.cn/api/wl/s/pinyin?msg=你好
接口定制: 点此加入用户群
默认QPS: 每2秒最多4次 携带Token可无视限制
请求参数说明:
名称 | 必填 | 类型 | 说明 |
---|---|---|---|
msg | 是 | string | 关键词 |
format | 是 | string | 是否携带音标,0:不带(默认)/1:携带音标 |
type | 是 | string | 返回格式默认JSON可选text |
返回参数说明:
名称 | 类型 | 说明 |
---|
返回示例:
{ "code": 200, "msg": "成功", "data": [ "你", "好" ] }
( ! ) Warning: file_get_contents(/www/wwwroot/api.52vmy.cn/view/api/wl/s/pinyin./111.json): failed to open stream: No such file or directory in /www/wwwroot/api.52vmy.cn/view/api/wl/s/pinyin/index.php on line 20 Call Stack # Time Memory Function Location 1 0.0003 397624 {main}( ) .../index.php:0 2 0.0004 397888 require( '/www/wwwroot/api.52vmy.cn/app/init.php ) .../index.php:17 3 0.0012 412688 require( '/www/wwwroot/api.52vmy.cn/route/web.php ) .../init.php:30 4 0.0013 412720 Route::any( $rule = '/api/{apiVal}', $method = 'IndexController@api', $action = ??? ) .../web.php:22 5 0.0013 412720 Route::get( $rule = '/api/{apiVal}', $method = 'IndexController@api', $action = NULL ) .../Route.php:44 6 0.0013 412720 Route::ifimp( $rule = '/api/{apiVal}', $method = 'IndexController@api', $action = NULL ) .../Route.php:124 7 0.0013 412720 Route::impController( $method = 'IndexController@api' ) .../Route.php:218 8 0.0029 444784 indexController->api( ) .../Route.php:260 9 0.0135 462264 require( '/www/wwwroot/api.52vmy.cn/view/api/wl/s/pinyin/index.php ) .../IndexController.php:260 10 0.0138 462480 file_get_contents( $filename = '/www/wwwroot/api.52vmy.cn/view/api/wl/s/pinyin./111.json' ) .../index.php:20
PHP代码示例:
$msg = $_GET["msg"]; $format = $_GET["format"]; $type = $_GET["type"]; $url = "https://api.52vmy.cn/api/wl/s/pinyin?msg=".$msg."&format=".$format."&type=".$type; echo file_get_contents($url);