搜索-资讯图片
通过搜索图片id、关键词或其他查询条件获取图片排序结果。
接口地址(URI):/api/search/editorial
HTTP请求方式:GET
请求参数:
| 请求值字段 | 必选 | 类型 | 说明 |
|---|---|---|---|
| id | false | string | 图片编号。例如:VCG41173827022 只传id时,keyword可为空. |
| keyword | false | string | 关键词搜索。支持多关键词搜索,and条件。多关键词用空格分隔。 不传id,keyword,channel_id 任意一个参数时,仅返回最近2个月的数据. |
| channel_id | false | string | 根据频道id进行筛选,最多5个,每个之间用半角逗号分隔 |
| sort | false | string | 排序方式:最佳匹配(best)、最新(time)、近期热门(fresh),输入:best/time/fresh 默认为最新排序 |
| sort_by | false | string | 排序方式:正序、倒序,输入:asc/desc 默认倒序(仅time排序有效) |
| orientation | false | string | 根据构图方式查询:1 横图、2 竖图、3 方图 多个用逗号分隔。eg: 1,2 |
| page | false | integer | 第几页,仅支持输入数字. 默认值 1 |
| nums | false | integer | 每页返回数量 最小值 10. 最大值 100. 默认值 100 |
返回参数:
| 返回字段 | 说明 |
|---|---|
| res_id | 图片编号 |
| caption | 图片的说明 |
| width | 图片的原图宽度 |
| height | 图片的原图高度 |
| upload_time | 图片的上传时间 |
| small_url_https | 图片的缩略图地址(尺寸:长边176 无水印https 链接) |
| preview_url_https | 图片的预览图地址(尺寸:长边400 无水印 https 链接) |
| group_title | 图片所属组的标题 |
| total_count | 返回结果总数 |
| total_page | 返回结果总页数 |
| per_page | 每页结果总数 |
| cur_page | 当前页码 |
请求参数示例example value:
Curl: curl -X GET --header 'Accept: application/json' --header 'api-key: xxxxxxxxxxxxxxxxxxxxxxxxx' --header 'authorization: Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' 'https://api.fotomore.com/api/search/editorial?keyword=test&page=1&nums=10' Request URL: https://api.fotomore.com/api/search/editorial?keyword=test&page=1&nums=10
返回数据示例example value:
{
"status_code": 1,
"message": "ok",
"data": {
"list": [
{
"res_id": "VCG111481051610",
"caption": "2015年2月9日,南昌,冬季的乡村,电热毯、电暖气、电热汀等使用频率增多,安全隐患随之增加,消防部门进行消防实验,提醒人们注意冬季取暖安全。",
"width": 5184,
"height": 3456,
"upload_time": "2024-02-20 21:48:05",
"small_url_https": "https://photo-static-api.fotomore.com/editorial/vcg/176/new/VCG111481051610.jpg?uid=484×tamp=1708496346&sign=cecdee33d1fdf0421cd8bd2fae3ea622",
"preview_url_https": "https://photo-static-api.fotomore.com/editorial/vcg/400/new/VCG111481051610.jpg?uid=484×tamp=1708496346&sign=cecdee33d1fdf0421cd8bd2fae3ea622",
"group_title":"南昌:消防实验提醒人们注意冬季取暖安全"
},
{
......
},
{
"res_id": "VCG111480644187",
"caption": "2024年2月18日,湖北宜昌,在秭归县泰和石化设备有限公司生产车间,工人对阀门进行液氮超低温实验。",
"width": 3200,
"height": 2099,
"upload_time": "2024-02-18 16:46:56",
"small_url_https": "https://photo-static-api.fotomore.com/editorial/vcg/176/new/VCG111480644187.jpg?uid=484×tamp=1708496346&sign=cecdee33d1fdf0421cd8bd2fae3ea622",
"preview_url_https": "https://photo-static-api.fotomore.com/editorial/vcg/400/new/VCG111480644187.jpg?uid=484×tamp=1708496346&sign=cecdee33d1fdf0421cd8bd2fae3ea622",
"group_title": "春节后首个工作日 工人开足马力加紧赶制订单"
}
],
"total_count": 118384,
"total_page": 11839,
"per_page": 10,
"cur_page": 1
}
}