# 抽取网页的全部图片
>[danger] 免费接口,每日100次免费调用
## 接口调用([调用须知](https://www.kancloud.cn/chimney/cn-api/2491302))
>[info] 抽取网页的全部图片链接
## 请求地址
~~~
GET https://api.cnbook.top/website/html/picture
~~~
## 请求参数
| 名称 | 必填 | 类型 | 说明 |
| --- | --- | --- | --- |
| url | 是 | string | 网页url地址 |
## 返回结果说明
| 名称 | 类型 | 类型 | 说明 |
| --- | --- | --- | --- |
| pic_url | string | res.wx.qq.com/mmbizwap/zh_CN/htmledition/images/pic/appmsg/pic_like_comment55871f.png | 图片url |
| alt | string | 示意图 | 描述 |
#### 返回示例
~~~
{
"code": 0,
"message": "success",
"data": {
"list": [
{
"pic_url": "res.wx.qq.com/mmbizwap/zh_CN/htmledition/images/pic/appmsg/pic_like_comment55871f.png",
"alt": "示意图"
}
],
"count": 2
},
"trace": 1634143730
}
~~~