文档
测试

获取批量目标债券图标

GET
http://localhost:11234/v1/bond/icons?bond_no[]=B4912ff4ea000307&bond_no[]=B4912ff4ea000308

请求参数

参数名
类型
描述
必填
bond_no[]
string
示例:B4912ff4ea000307
必填

响应参数

参数名
类型
描述
必填
code
int
示例:200
必填
msg
string
示例:
必填
data
array
数据列表
必填
bond_no
string
示例:B4912ff4ea000307
必填
title
string
示例:国际金融中心债券
必填
icon
string
示例:icon_url
必填

说明 / 示例

请求示例: ``` curl http://localhost:11234/v1/bond/icons?bond_no[]=B4912ff4ea000307&bond_no[]=B4912ff4ea000308 ``` 返回示例: ``` { "code": 200, "msg": "", "data": [ { "bond_no": "B4912ff4ea000307", "title": "国际金融中心债券", "icon": "icon_url" } ] } ```