**简要描述:**
* 查询专题详细信息
**请求URL:**
* /api/v2/topic_content
**请求方式:**
* POST
**header:**
| 参数名 | 必选 | 类型 | 说明 |
| --- | --- | --- | --- |
| Content-Type | 是 | JSON | application/json |
**请求参数:**
| 参数名 | 必选 | 类型 | 说明 |
| --- | --- | --- | --- |
| topic_id | 是 | int | 专题ID|
**请求示例**
1.
~~~
{
"topic_id": "1", //专题ID
}
~~~
**返回结果**
说明请参考视频列表,与视频详情返回结果完全一样,只是内容上,视频列表的视频详情介绍不存在而已(量大的数据不会在列表结构中返回)
**专题详情数据**
~~~
{
"status":200,
"msg":"ok",
"result":{
"topic_id":1,
"topic_name":"mingcheng",
"topic_pic":"upload\\/topic\\/20210104-1\\/b290b4c9defc7f668c0c75a1d026ea55.png",
"topic_level":0,
"topic_rel_vod":"12,11,10,1,2",//视频ID
"topic_rel_art":"12,11,10,1,2",//文章D
"topic_content":"介绍",
"topic_blurb":"简介"
}
}
~~~