知乎热搜榜
起零API 官方文档
知乎热搜榜
基本说明:
接口地址:https://api.istero.com/resource/zhihu/top
返回格式:json
请求方式:get/post
请求示例:https://api.istero.com/resource/zhihu/top?token=TOKEN
请求参数说明:
名称 类型 必填 说明
token string 必填 对应平台密钥 扫码关注公众号
返回参数说明:
名称 类型 说明
rank int 排名
title string 标题
hot string 热度
url string 知乎地址
JSON返回示例:
{
	"code": 200,
	"data": [{
		"rank": 1,
		"title": "美联储开启四年来首次降息,降息有什么影响?为什么普通人也需要关注美国降息?",
		"hot": "3074万",
		"url": "https://www.zhihu.com/question/667483163"
	}],
	"message": ""
}
服务级错误码参照
错误码 说明
400 数据返回错误,“message”显示错误信息
401 TOKEN为空
402 接口不存在
403 接口请求失败
404 TOKEN错误/鉴权失败
405 IP白名单规则拦截
406 Referer白名单规则拦截
407 接口维护中
408 接口已停止服务
500 接口服务器错误
501 余额不足,仅付费接口会出现此状态码
502 违反平台协议,账号被封锁
完整教学代码示例
<?php
/**
 * Created by PhpStorm.
 * User: FZS
 * Time: 2025/01/19 22:11
 */
class freeApi
{
    private $apiUrl;

    public function __construct()
    {
        $this->apiUrl = 'https://api.istero.com/resource/zhihu/top?token=TOKEN';
    }

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

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

const (
	APIURL   = "https://api.istero.com/resource/zhihu/top?token=TOKEN"
)

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))
}