## 明星百科档案 >[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210) ![](https://img.kancloud.cn/a0/5e/a05ee99cb18619c5b7b278c4a764719f_200x200.png) > 查询全球明星档案公开信息,包含姓名、年龄、身高、国籍等。 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/star/index ``` ### 请求参数 | 名称 | 类型 | 必填 | 说明 | | --- | --- | --- | --- | | appCode| string|是|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) | | name | string | 否 | 按姓名或艺名检索 | | sex | string | 否 | 按性别检索 | | nation | string | 否 | 按国籍检索 | | birth | string | 否 | 按生日检索 | | constellation | string | 否 | 按星座检索 | | page | int | 否 | 翻页 | | num | int | 否 | 返回数量 | ### 返回`data`参数 | 名称 | 类型 | 示例值 | 说明 | | --- | --- | --- | --- | | name | string | 艾欣儿 | 姓名 | | sex | string | 女 | 性别 | | nationality | string | 中国 | 国籍 | | birthDate | string | 05-07 | 生日 | | occupation | string | 模特 | 职业 | | high | string | 170cm | 身高 | | weight | string | 53kg | 体重 | | desc | string | 艾欣儿,吉林人,时尚美女嫩模,可爱性感的面孔...... | 简介 | | nativePlace | string | 吉林 | 籍贯 | | school | string | 北京电影学院 | 毕业学校 | | company | string | | 经纪公司 | | constellation | string | 金牛座 | 星座 | | habit | string | | 习惯 | | imageURL | string | http://img.star.iecity.com/Upload/Star/201408/14/20140814141244819.jpg | 图片 | ## SDK调用 ``` $client = new Client("YourAppCode"); $result = $client->starIndex() ->withName('刘德华') ->request(); ``` 返回示例: ~~~ { "code":0, "message": "成功", "data": [ { "name": "刘德华", "sex": "男", "nationality": "中国香港", "birthDate": "1961-9-27", "occupation": "导演,演员,歌手,制片人,编剧", "high": "174cm", "weight": "65kg", "desc": "1978年刘德华入无线艺员训练班学习,毕业后任无线电视台演员。先后主演过电视连续剧香港八一(1981)饰倪剑声,英雄出少年(1981)饰少林俗家弟子,江湖再现(1981)饰阿龙,戏班小子(1982)饰云开,花艇小英雄(1982)饰钱日添,苏乞儿(1982)饰铁豪,猎鹰(1982)饰江大伟,奔向太阳(1983)饰李志豪,临岐之决(1983)饰马日明,老洞(1983)饰谢尚楚,神雕侠侣(1983)饰杨过,鹿鼎记(1984)饰康熙,魔域桃源(1984)饰傅青云,宝芝林(1984)饰林世荣,鼓舞(1985)饰叶展", "nativePlace": "广东江门市新会区", "school": "啬色园可立中学", "company": "", "constellation": "天秤座", "habit": "收集古董手表、绘画、书法、阅读,魔术", "imageURL": "http://img.star.iecity.com/Upload/Star/201406/20/20140620132540860.jpg" } ] } ~~~