← 返回
未分类 Key 中文

Scavio Google

Search Google and get structured JSON results (web, news, images, maps). Use for any query requiring current web information or recent news.
搜索 Google,返回结构化的 JSON(网页、新闻、图片、地图),适用于需要当前网页信息或最新新闻的查询。
scavio-ai scavio-ai 来源
未分类 clawhub v2.0.3 3 版本 100000 Key: 需要
★ 1
Stars
📥 509
下载
💾 1
安装
3
版本
#latest

概述

Google Search via Scavio

Search Google and return structured JSON — no HTML parsing required. Covers web, news, images, maps, and lens search types.

When to trigger

Use this skill when the user asks to:

  • Look something up on the web or check a current fact
  • Find recent news or events
  • Search for images, maps, or documentation
  • Answer any question that requires real-time or up-to-date information

Do not answer from memory when current information is needed. Search first.

Setup

Get a free API key at https://scavio.dev (250 free credits/month, no card required):

export SCAVIO_API_KEY=sk_live_your_key

Workflow

  1. Identify the user's intent and pick the right search_type (classic, news, images, maps, lens).
  2. Choose light_request: false only if you need knowledge graph, people also ask, or related searches (costs 2 credits vs 1).
  3. Call the endpoint with the query and any filters.
  4. Return results in a clear, structured response. Cite URLs.

Endpoint

POST https://api.scavio.dev/api/v1/google
Authorization: Bearer $SCAVIO_API_KEY

Parameters

ParameterTypeDefaultDescription
------------
querystringrequiredSearch query (1-500 chars)
search_typestringclassicclassic, news, maps, images, lens
country_codestring--ISO 3166-1 alpha-2 (e.g. us, gb, de)
languagestring--ISO 639-1 code (e.g. en, fr, es)
pagenumber1Result page number
devicestringdesktopdesktop or mobile
nfprbooleanfalseSet true to disable autocorrection
light_requestbooleanomittedOmit for 1 credit. Set false for full results (2 credits)

Example

import os, requests

response = requests.post(
    "https://api.scavio.dev/api/v1/google",
    headers={"Authorization": f"Bearer {os.environ['SCAVIO_API_KEY']}"},
    json={"query": "langchain agents tutorial", "country_code": "us", "language": "en"},
)
data = response.json()
# results in data["results"]

Response

{
  "results": [
    {
      "title": "Result title",
      "url": "https://example.com",
      "description": "Snippet...",
      "position": 1
    }
  ],
  "query": "langchain agents tutorial",
  "credits_used": 1,
  "credits_remaining": 999
}

Full mode ("light_request": false) also returns: knowledge_graph, questions (people also ask), related_searches, news_results, top_stories.

Guardrails

  • Never fabricate search results or URLs. Only return what the API gives you.
  • If the query is time-sensitive, always call the API — do not answer from training data.
  • search_type: news only supports device: desktop.
  • Cite sources when summarizing results.

Failure handling

  • If the API returns an error, report the status code and stop.
  • If no results are returned, tell the user and suggest rephrasing.
  • If SCAVIO_API_KEY is not set, prompt the user to export it before continuing.

LangChain

pip install langchain-scavio
from langchain_scavio import ScavioSearchTool
tool = ScavioSearchTool(engine="google")

版本历史

共 3 个版本

  • v2.0.3 当前
    2026-06-09 17:41
  • v2.0.2
    2026-05-21 13:13 安全 安全
  • v1.0.1
    2026-05-03 10:23 安全 安全

安全检测

腾讯云安全 (Keen)

队列中

腾讯云安全 (Sanbu)

队列中

🔗 相关推荐

Scavio Walmart

scavio-ai
搜索 Walmart 商品,支持按商品 ID 查询详情,可按配送速度、邮编和门店库存筛选,返回结构化 JSON。
★ 0 📥 562

Scavio Youtube

scavio-ai
搜索YouTube并获取视频元数据。用于查找视频、查看播放量、频道信息或AI训练适用性。
★ 0 📥 542

Scavio Reddit

scavio-ai
通过 URL 搜索 Reddit 帖子或获取完整帖子及嵌套评论。适用于讨论研究、品牌监测、情感分析或 RAG管道等。
★ 0 📥 445