搜图
夏柔API 官方文档
根据关键字搜索百度图片,返回搜索到的结果
基本说明:
接口地址:https://zj.v.api.aa1.cn/api/so-baidu-img/
返回格式:json
请求方式:get
请求示例:https://zj.v.api.aa1.cn/api/so-baidu-img/?msg=免费接口&page=1
请求参数说明:
名称 类型 必填 说明
msg string 必填 搜索关键词
page int 必填 页数
返回参数说明:
名称 类型 说明
oriTitle string 图片名
hoverUrl string 图片链接
thumbnailUrl string 图片缩略图链接
width int 图片宽度
height int 图片高度
JSON返回示例:
{
	"code": "200",
	"data": [{
			"oriTitle": "接口大全-免费API,为您收集免费的接口服务,做一个api的搬运工",
			"hoverUrl": "https://www.free-api.com/?fm=253&fmt=auto&app=138&f=JPEG?w=701&h=500",
			"thumbnailUrl": "https://www.free-api.com/?fm=253&fmt=auto&app=138&f=JPEG?w=701&h=500",
			"width": 810,
			"height": 578
		},
		{
			"oriTitle": "接口大全-免费API,为您收集免费的接口服务,做一个api的搬运工",
			"hoverUrl": "https://www.free-api.com/?fm=253&fmt=auto&app=138&f=JPEG?w=701&h=500",
			"thumbnailUrl": "https://www.free-api.com/?fm=253&fmt=auto&app=138&f=JPEG?w=701&h=500",
			"width": 810,
			"height": 578
		},
		{
			"oriTitle": "接口大全-免费API,为您收集免费的接口服务,做一个api的搬运工",
			"hoverUrl": "https://www.free-api.com/?fm=253&fmt=auto&app=138&f=JPEG?w=701&h=500",
			"thumbnailUrl": "https://www.free-api.com/?fm=253&fmt=auto&app=138&f=JPEG?w=701&h=500",
			"width": 810,
			"height": 578
		},
		{
			"oriTitle": "接口大全-免费API,为您收集免费的接口服务,做一个api的搬运工",
			"hoverUrl": "https://www.free-api.com/?fm=253&fmt=auto&app=138&f=JPEG?w=701&h=500",
			"thumbnailUrl": "https://www.free-api.com/?fm=253&fmt=auto&app=138&f=JPEG?w=701&h=500",
			"width": 810,
			"height": 578
		},
		{
			"oriTitle": "接口大全-免费API,为您收集免费的接口服务,做一个api的搬运工",
			"hoverUrl": "https://www.free-api.com/?fm=253&fmt=auto&app=138&f=JPEG?w=701&h=500",
			"thumbnailUrl": "https://www.free-api.com/?fm=253&fmt=auto&app=138&f=JPEG?w=701&h=500",
			"width": 810,
			"height": 578
		}
	]
}
服务级错误码参照
错误码 说明
- -
完整教学代码示例
<?php
/**
 * Created by PhpStorm.
 * User: FZS
 * Time: 2023/03/07 22:56
 */
class freeApi
{
    private $apiUrl;

    public function __construct()
    {
        $this->apiUrl = 'https://zj.v.api.aa1.cn/api/so-baidu-img/?msg=免费接口&page=1';
    }

    /**
     * 获取结果
     * @return array
     */
    public function getResult()
    {
        return file_get_contents($this->apiUrl);
    }
}
package main

import (
	"fmt"
	"io/ioutil"
	"log"
	"net/http"
)

const (
	APIURL   = "https://zj.v.api.aa1.cn/api/so-baidu-img/?msg=免费接口&page=1"
)

func main() {
	queryUrl := fmt.Sprintf("%s",APIURL)
	resp, err := http.Get(queryUrl)
	if err != nil {
		log.Println(err)
		return
	}

	defer resp.Body.Close()

	body, err := ioutil.ReadAll(resp.Body)

	if err != nil {
		fmt.Println(err)
		return
	}

	fmt.Println(string(body))
}