# 抽取網頁的全部圖片
>[danger] 免費接口,每日100次免費調用
## 接口調用([調用須知](http://www.hmoore.net/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
}
~~~