# 独角兽
# 接口地址
unicorn_club/get_unicorn_club_list_v2
# 接口参数
参数名 | 必选 | 说明 |
---|---|---|
list_status | 否 | 公司榜单状态,1为上榜,2为退榜 |
com_prov | 否 | 公司所在省份, 传入格式为:北京,若传入多条则需用英文逗号分隔:北京,浙江 |
industry_id | 否 | 公司行业ID, 若传入多条参数需用英文逗号分隔, 例:1,12,28(查看映射关系) |
com_round_id | 否 | 公司轮次ID(查看映射关系) |
off_list_reason | 否 | 退榜原因(可选项:上市、被收购、经营不善、经营困难、破产倒闭、P2P爆雷、其他原因) |
date_pattern | 否 | 时间模式筛选,1为公司成立时间、2为上榜时间、3为退榜时间 |
date_start | 否 | 时间筛选模式下的必选参数, 起始日期, 格式为2017-4-1 |
date_end | 否 | 时间筛选模式下的必选参数, 截止日期, 格式为2017-4-10 注, 起始日期需早于截止日期 |
page | 否 | 分页参数 (默认为1) |
start | 否 | 起始显示条数(默认为0) |
limit | 否 | 每页显示公司个数 (默认为20, 最大为100) |
order | 否 | 对查出数据进行排序, 1为估值, 2为最新融资时间,3为上榜时间、4为退榜时间,默认是1。 |
# 返回实例
{
"code":1000,
"info":"Success",
"total":67,
"data":[
{
"com_id":"33050459",
"com_name":"贝壳集团",
"com_logo":"https://cdn.itjuzi.com/images/68c708d841b0458bc72f3160024fadc5.png",
"com_des":"贝壳集团旗下拥有贝壳、链家两大平台,其中贝壳找房是一个房屋租赁交易服务平台,平台上拥有大量房源信息,覆盖各省市二手房、新房、出租房信息;链家是一个连锁房地产中介机构。",
"com_url":"https://bj.ke.com/",
"com_born_year":"2017",
"com_born_month":"11",
"com_prov":"天津",
"com_city":"滨海新区",
"industry_name":"房产服务",
"sub_industry_name":"房产综合服务",
"tags":[
{
"tag_id":"638",
"tag_name":"房产服务"
},
{
"tag_id":"639",
"tag_name":"租房"
},
...
],
"valuation":"14625000.00",
"list_status":"2",
"on_list_date":"2019-07-18",
"off_list":{
"off_list_date":"2020-08-13",
"off_list_reason":"上市",
"detailed_reason":"纽交所上市"
},
"team":[
{
"id":"107470",
"name":"彭永东",
"photo":
"https://cdn.itjuzi.com/images/c289ccfadd1152e63eec90595d9ff118.jpg",
"introduce":"彭永东,现担任贝壳找房CEO、链家网CEO。2010年加入链家,2006-2010年,担任IBM战略与变革高级咨询顾问,曾为中国移动、中国电信、链家等提供过战略咨询服务。"
}
],
"investors":[
...
{
"type":"investment",
"id":"45",
"name":"腾讯投资"
},
{
"type":"fund",
"id":"20419",
"name":"中城联家兴(深圳)投资中心(有限合伙)"
},
{
"type":"person",
"id":"41634",
"name":"陈小红"
},
...
],
"latest_financing":{
"invest_year":"2020",
"invest_month":"8",
"invest_day":"13",
"invest_round":"IPO上市",
"detail_amount":"212000",
"approx_amount":"亿元及以上",
"currency":"美元"
}
},
...
]
}
# 字段说明
字段 | 说明 |
---|---|
com_id | 公司id |
com_name | 公司简称 |
com_logo | 公司logo |
com_des | 公司简介 |
com_url | 公司网址 |
com_born_year | 公司成立时间-年 |
com_born_month | 公司成立时间-月 |
com_prov | 公司所在省份 |
com_city | 公司所在城市 |
industry_name | 公司所在行业 |
sub_industry_name | 公司所在子行业 |
tags/ | 公司标签 |
tags/tag_id | 标签ID |
tags/tag_name | 标签名称 |
valuation | 最新估值(单位:万美元) |
list_status | 榜单状态(1为上榜,2为退榜) |
on_list_date | 上榜时间 |
off_list | 退榜信息/ |
off_list_date | 退榜时间 |
off_list_reason | 退榜原因 |
detailed_reason | 具体退榜原因 |
team/ | 团队信息 |
id | 人物id |
name | 名称 |
photo | 头像 |
introduction | 介绍 |
investors/ | 过往投资方/ |
type | 投资方类型(查看映射关系) |
id | 投资方id |
name | 投资方名称 |
latest_financing/ | 公司最新一轮融资 |
invest_year | 融资时间-年 |
invest_month | 融资时间-月 |
invest_day | 融资时间-天 |
invest_round | 融资轮次 |
detail_amount | 融资的详细金额((单位:万) |
approx_amount | 融资的近似金额 |
currency | 币种名称 |