网络随机取名
随机取一个好听的名字

接口地址: https://58.linkpc.net/doc/cname.html

返回格式: JSON

请求方式: GET/POST

请求示例: https://58.linkpc.net/api/cname

请求参数说明:

名称 必填 类型 说明
sex int 适合的性别,1男性、2女性、3中性[默认]
wordnum int 名字的字数,默认2,最大3
num int 返回数量,默认1,最大50
word String 名字中包含的字

返回参数说明:

名称 类型 说明
naming String 名字
wordnum int 名字字数
sex int 适合性别,1男性,2女性,3中性

返回示例:

{
"code": 200,
"msg": "success",
"data": {
"list": [
{
"naming": "舒畅",
"wordnum": 2,
"sex": 3
}
]
}
}

错误码格式说明:

名称 类型 说明

代码示例:

<?php
header('Content-type: application/json; charset=utf-8');
date_default_timezone_set('PRC');
$url = 'https://58.linkpc.net/api/cname';
$type = isset($_GET['type']) ? $_GET['type'] : '';
if ($type == 'json' || $type == 'JSON') {
$result = file_get_contents($url . '?type=json');
echo htmlspecialchars($result);
} else {
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$contentType = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
curl_close($ch);