Bing Search API's
收藏RapidAPI2026-05-27 更新2026-05-29 收录
下载链接:
https://rapidapi.com/mughu/api/bing-search-api-s
下载链接
链接失效反馈官方服务:
资源简介:
Web & image search results powered by Azure Official API
创建时间:
2026-05-27
原始信息汇总
Bing Search API 数据集详情
数据集概述
Bing Search API 是一个基于 Bing 搜索技术的 API 服务,提供网页搜索和图像搜索两个核心端点,返回经过清洗的结构化 JSON 数据,不含原始 Bing 的内部跟踪字段或元数据。
基础信息
-
基础 URL:
https://bing-search-api-s.p.rapidapi.com -
认证方式: 所有请求需在请求头中包含
X-RapidAPI-Key和X-RapidAPI-Host -
数据来源: Azure Official API 支持的 Web 和图像搜索
-
价格方案:
方案 价格 每月请求量 速率限制 Basic 免费 100 1 req/sec Pro $7/月 10,000 250 req/sec Ultra $10/月 25,000 250 req/sec Mega $22/月 100,000 500 req/sec 所有方案包含 10,240MB 带宽/月,超额按 $0.001/MB 计费。
端点详情
1. 网页搜索 (GET /api/v1/search/web)
- 功能: 查询网页,返回结构化结果,包括标题、URL、摘要、深层链接、相关搜索和分页信息
- 查询参数:
参数 类型 必填 描述 qstring 是 搜索查询(最多 500 字符) countinteger 否 返回结果数,范围 1–50,默认 10 offsetinteger 否 分页偏移量,默认 0 langstring 否 语言代码(如 en,id,fr),默认en - 响应关键字段:
data.query,data.totalEstimatedMatches,data.results[](包含 title, url, snippet, deepLinks 等),data.relatedSearches[],data.pagination
2. 图像搜索 (GET /api/v1/search/images)
- 功能: 搜索图像,返回直接图像 URL、缩略图、尺寸、来源页面信息和相关图像查询
- 查询参数:
参数 类型 必填 描述 qstring 是 搜索查询(最多 500 字符) countinteger 否 返回图像数,范围 1–50,默认 25 offsetinteger 否 分页偏移量,使用 nextOffset - 响应关键字段:
data.query,data.totalEstimatedMatches,data.images[](包含 name, thumbnailUrl, contentUrl, hostPageUrl, width, height, accentColor 等),data.relatedSearches[],data.queryExpansions[]
错误处理
所有错误响应遵循统一格式: json { "success": false, "error": "Error Type", "message": "Human readable message" }
- 400: 缺少或无效的
q参数 - 401: 无效或缺失 API 密钥
- 429: 超出速率限制
- 502: 上游搜索服务错误
- 504: 上游搜索超时
分页说明
- 网页搜索: 使用
offset,count,lang参数,下一页偏移量从data.pagination.nextOffset获取 - 图像搜索: 使用
offset+count参数,下一页偏移量从data.nextOffset获取
适用场景
构建搜索功能、内容聚合器、研究工具、浏览器扩展,或任何需要可靠网页和图像搜索数据的应用程序。



