秘塔搜索

Data & APIs

Search the web using Metaso AI Search API. Use for live information, documentation, or research topics.

Install

openclaw skills install metaso-search-skill

Metaso Search

Search the web via Metaso AI Search API.

Usage

python skills/metaso-search/scripts/search.py '<JSON>'

Request Parameters

ParamTypeRequiredDefaultDescription
qstryes-Search query
scopestrnowebpageSearch scope: webpage, news, paper, etc.
sizeintno10Number of results (1-50)
pageintno1Page number
conciseSnippetboolnofalseReturn concise snippet
includeSummaryboolnofalseInclude AI summary
includeRawContentboolnofalseFetch raw content from sources

Examples

# Basic search
python scripts/search.py '{"q":"OpenClaw AI"}'

# With options
python scripts/search.py '{
  "q": "人工智能最新进展",
  "size": 5,
  "includeSummary": true
}'

API Reference

Request Example

curl --location 'https://metaso.cn/api/v1/search' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
  "q": "搜索关键词",
  "scope": "webpage",
  "size": 10,
  "includeSummary": false,
  "includeRawContent": false,
  "conciseSnippet": false
}'

Response Example

{
  "credits": 3,
  "searchParameters": {
    "q": "搜索关键词",
    "scope": "webpage",
    "size": 10
  },
  "webpages": [
    {
      "title": "标题",
      "link": "https://example.com",
      "snippet": "摘要内容",
      "score": "high",
      "date": "2026-03-22"
    }
  ],
  "total": 25
}

Current Status

✅ Ready to use