查询全球明星档案公开信息,包含姓名、年龄、身高、国籍等。
查询全球明星档案公开信息,包含姓名、年龄、身高、国籍等。
调用地址: https://api.topthink.com/star/index
请求方式:POST
返回类型:JSON
API 调用: 调用说明
| 名称 | 必填 | 类型 | 说明 |
|---|---|---|---|
| name | 否 | string | 按姓名或艺名检索 |
| sex | 否 | string | 按性别检索 |
| nation | 否 | string | 按国籍检索 |
| birth | 否 | string | 按生日检索 |
| constellation | 否 | string | 按星座检索 |
| page | 否 | string | 翻页数 |
| num | 否 | string | 返回数量 |
$client = new Client("访问令牌")
$result = $client->starIndex()
->withName("name")
->withSex("sex")
->withNation("nation")
->withBirth("birth")
->withConstellation("constellation")
->withPage("page")
->withNum("num")
->request();