Skip to content

images 字段结构说明

images 是一个数组,表示 Google Lens 以图搜图相关图片数组。通常一页返回 60条 每个元素对应一张图片及其相关元信息,通常包含以下字段:

Logo

字段名说明
domain图片来源网站的主域名,用于快速识别图片出处
image_url图片的实际访问地址(原图链接)
image_width图片宽度,单位为像素
image_height图片高度,单位为像素
thumbnail_url预览图链接
thumbnail_width预览图宽度,单位为像素
thumbnail_height预览图高度,单位为像素
link图片所属网页的跳转链接,点击图片后访问的页面地址
source图片来源的完整网站名称或频道信息(通常含站点名与平台说明)
title图片的标题或描述文字,通常来自网页的图片标签或上下文内容

测试用例

bash
curl --location 'https://api.serp.hk/serp/google/lens/advanced' \
--header 'Authorization: Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' \
--header 'Content-Type: application/json' \
--data '{
        "hl": "zh-cn", 
        "url": "https://www.shutterstock.com/image-photo/fresh-red-apple-leaf-water-260nw-2549725453.jpg"
}' --compressed

返回结果

json
[
      {
        "domain": "www.shutterstock.com",
        "image_height": 311,
        "image_url": "https://www.shutterstock.com/image-photo/fresh-red-apple-leaf-water-260nw-2549725453.jpg",
        "image_width": 280,
        "link": "https://www.shutterstock.com/vi/image-photo/fresh-red-apple-leaf-water-droplets-2549725453",
        "source": "Shutterstock",
        "thumbnail_height": 237,
        "thumbnail_url": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTOvwekMPkJ8xvGvjYTgmPibKtnb3YOosd_LG0dspys5xlBXBMJ",
        "thumbnail_width": 213,
        "title": "Fresh Red Apple Leaf Water DropletsẢnh có sẵn2549725453 ..."
      },
      {
        "domain": "www.vecteezy.com",
        "image_height": 1960,
        "image_url": "https://static.vecteezy.com/system/resources/previews/053/759/966/large_2x/red-apple-fruit-with-green-leaf-on-white-background-free-photo.jpg",
        "image_width": 1960,
        "link": "https://www.vecteezy.com/photo/53759966-red-apple-fruit-with-green-leaf-on-white-background",
        "source": "Vecteezy",
        "thumbnail_height": 225,
        "thumbnail_url": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRbDAQ7FxBSRMtE0Bx0DssOStALRy7wJZmZem4ywpAZcAKcCqKf",
        "thumbnail_width": 225,
        "title": "Red apple fruit with green leaf on white background photo"
      },
      {
        "domain": "www.istockphoto.com",
        "image_height": 454,
        "image_url": "https://media.istockphoto.com/id/901453424/photo/ripe-red-apple-with-water-drops-file-contains-clipping-path.jpg?s=170667a&w=0&k=20&c=C1xeRxd4gyY4WjMIyFy7Wd3Uq9pHaE7-MhY6qQvqp1Y=",
        "image_width": 380,
        "link": "https://www.istockphoto.com/photo/ripe-red-apple-with-water-drops-file-contains-clipping-path-gm901453424-248692944",
        "source": "iStock",
        "thumbnail_height": 245,
        "thumbnail_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTLqydoGzU4bjKSCMwUFGLuqqGthTu_UPesaJcDGEnKC3y1E-QL",
        "thumbnail_width": 205,
        "title": "Ripe Red Apple With Water Drops File Contains Clipping Path ..."
      },
      {
        "domain": "pngtree.com",
        "image_height": 722,
        "image_url": "https://png.pngtree.com/png-vector/20240727/ourmid/pngtree-whole-apple-fruit-with-white-background-png-image_13242759.png",
        "image_width": 360,
        "link": "https://pngtree.com/free-fruit-photos/apple",
        "source": "Pngtree",
        "thumbnail_height": 318,
        "thumbnail_url": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSPv4AbbUeiXj8yVNFQcupGA8E2fEALyHLiJWpstPfWFmXeqQ31",
        "thumbnail_width": 158,
        "title": "Apple Photos, Download Free Apple PNG Pictures With ..."
      },
    ...
]