# Send UnSearch to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "unsearch",
    "name": "UnSearch",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Rakesh1002/unsearch",
    "canonicalUrl": "https://clawhub.ai/Rakesh1002/unsearch",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/unsearch",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=unsearch",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "unsearch",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T09:22:01.509Z",
      "expiresAt": "2026-05-17T09:22:01.509Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=unsearch",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=unsearch",
        "contentDisposition": "attachment; filename=\"unsearch-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "unsearch"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/unsearch"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/unsearch",
    "downloadUrl": "https://openagent3.xyz/downloads/unsearch",
    "agentUrl": "https://openagent3.xyz/skills/unsearch/agent",
    "manifestUrl": "https://openagent3.xyz/skills/unsearch/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/unsearch/agent.md"
  }
}
```
## Documentation

### UnSearch Web Search Skill

Search the web, extract content, verify facts, and conduct deep research using the UnSearch API—an open-source Tavily/Exa alternative.

### Quick Start

Set your API key:

export UNSEARCH_API_KEY="uns_your_api_key"

Get a free API key at https://unsearch.dev (5,000 queries/month free).

### API Endpoints

Base URL: https://api.unsearch.dev/api/v1

All requests require header: X-API-Key: $UNSEARCH_API_KEY

### 1. Web Search

Search the web with optional content scraping.

curl -X POST "https://api.unsearch.dev/api/v1/search" \\
  -H "X-API-Key: $UNSEARCH_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "query": "your search query",
    "engines": ["google", "bing", "duckduckgo"],
    "max_results": 10,
    "scrape_content": true
  }'

### Key Parameters

ParameterTypeDefaultDescriptionquerystringrequiredSearch query (1-500 chars)enginesstring[]["google","bing","duckduckgo"]Search enginesmax_resultsinteger10Results to return (1-100)scrape_contentbooleantrueExtract full page contentlanguagestring"en"ISO 639-1 language code

### Response

{
  "results": [
    {
      "title": "Page Title",
      "url": "https://example.com",
      "snippet": "Search result snippet...",
      "scraped_content": {
        "text": "Full page content...",
        "word_count": 2500
      }
    }
  ],
  "processing_time_ms": 1500
}

### 2. Agent Search (Tavily-Compatible)

AI-optimized search with optional answer generation.

curl -X POST "https://api.unsearch.dev/api/v1/agent/search" \\
  -H "X-API-Key: $UNSEARCH_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "query": "What is machine learning?",
    "include_answer": true,
    "max_results": 5,
    "search_depth": "basic"
  }'

### Key Parameters

ParameterTypeDefaultDescriptionquerystringrequiredSearch queryinclude_answerbool/stringfalseGenerate AI answer (true, "basic", "advanced", "production")search_depthstring"basic"basic, advanced, fastmax_resultsinteger5Results (1-20)include_raw_contentbooleanfalseInclude full page contentinclude_domainsstring[]nullOnly search these domainsexclude_domainsstring[]nullExclude these domains

### Response

{
  "query": "What is machine learning?",
  "answer": "Machine learning is a subset of AI...",
  "results": [
    {
      "title": "Machine Learning - Wikipedia",
      "url": "https://en.wikipedia.org/wiki/Machine_learning",
      "content": "Machine learning is a branch of AI...",
      "score": 0.95
    }
  ],
  "response_time": 1.25
}

### 3. Content Extraction

Extract content from specific URLs.

curl -X POST "https://api.unsearch.dev/api/v1/agent/extract" \\
  -H "X-API-Key: $UNSEARCH_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "urls": ["https://example.com/article"],
    "extract_depth": "basic"
  }'

### Response

{
  "results": [
    {
      "url": "https://example.com/article",
      "raw_content": "Full article text...",
      "failed": false
    }
  ]
}

### 4. Deep Research

Multi-source research with AI synthesis.

curl -X POST "https://api.unsearch.dev/api/v1/agent/research" \\
  -H "X-API-Key: $UNSEARCH_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "query": "Impact of AI on healthcare",
    "depth": "deep",
    "max_sources": 15,
    "include_analysis": true
  }'

### Depth Levels

DepthSourcesUse Casequick3-5Fast overviewstandard5-10Balanced researchdeep10-20Thorough analysiscomprehensive20-30Expert-level

### Response

{
  "executive_summary": "AI is transforming healthcare...",
  "key_findings": ["AI diagnostics show 95% accuracy..."],
  "sources": [...],
  "model_used": "qwq-32b"
}

### 5. Fact Verification

Verify claims against multiple sources.

curl -X POST "https://api.unsearch.dev/api/v1/verify/claim" \\
  -H "X-API-Key: $UNSEARCH_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "claim": "GPT-4 was released in March 2023",
    "depth": "thorough"
  }'

### Response

{
  "verdict": "true",
  "confidence": 95,
  "summary": "GPT-4 was released March 14, 2023.",
  "supporting_evidence": [...],
  "sources_checked": 12
}

Verdict values: true, false, partially_true, misleading, unverifiable

### Python Examples

import httpx
import os

API_KEY = os.environ["UNSEARCH_API_KEY"]
BASE_URL = "https://api.unsearch.dev/api/v1"

async def search(query: str, scrape: bool = False):
    async with httpx.AsyncClient() as client:
        response = await client.post(
            f"{BASE_URL}/search",
            headers={"X-API-Key": API_KEY},
            json={
                "query": query,
                "max_results": 10,
                "scrape_content": scrape
            }
        )
        return response.json()

async def agent_search(query: str, include_answer: bool = True):
    async with httpx.AsyncClient() as client:
        response = await client.post(
            f"{BASE_URL}/agent/search",
            headers={"X-API-Key": API_KEY},
            json={
                "query": query,
                "include_answer": include_answer,
                "max_results": 5
            }
        )
        return response.json()

async def extract_urls(urls: list[str]):
    async with httpx.AsyncClient() as client:
        response = await client.post(
            f"{BASE_URL}/agent/extract",
            headers={"X-API-Key": API_KEY},
            json={"urls": urls}
        )
        return response.json()

### JavaScript Examples

const API_KEY = process.env.UNSEARCH_API_KEY;
const BASE_URL = "https://api.unsearch.dev/api/v1";

async function search(query, scrapeContent = false) {
  const response = await fetch(\`${BASE_URL}/search\`, {
    method: "POST",
    headers: {
      "X-API-Key": API_KEY,
      "Content-Type": "application/json"
    },
    body: JSON.stringify({
      query,
      max_results: 10,
      scrape_content: scrapeContent
    })
  });
  return response.json();
}

async function agentSearch(query, includeAnswer = true) {
  const response = await fetch(\`${BASE_URL}/agent/search\`, {
    method: "POST",
    headers: {
      "X-API-Key": API_KEY,
      "Content-Type": "application/json"
    },
    body: JSON.stringify({
      query,
      include_answer: includeAnswer,
      max_results: 5
    })
  });
  return response.json();
}

### Rate Limits

PlanQueries/MonthRate LimitFree5,00010/minPro25,00060/minGrowth100,000200/minScale500,0001,000/min

Rate limit headers in response:

X-RateLimit-Remaining: Requests left
X-RateLimit-Reset: Reset timestamp

### Privacy Mode

For sensitive queries, enable zero-retention:

curl -X POST "https://api.unsearch.dev/api/v1/search" \\
  -H "X-API-Key: $UNSEARCH_API_KEY" \\
  -H "X-Zero-Retention: true" \\
  -H "Content-Type: application/json" \\
  -d '{"query": "sensitive query"}'

### Error Handling

CodeDescription401Invalid API key429Rate limited (check Retry-After header)422Validation error500Server error

### Additional Resources

Documentation: https://docs.unsearch.dev
API Reference: https://docs.unsearch.dev/api
Self-hosting: https://github.com/unsearch-org/unsearch
Get API Key: https://unsearch.dev
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Rakesh1002
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-10T09:22:01.509Z
- Expires at: 2026-05-17T09:22:01.509Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/unsearch)
- [Send to Agent page](https://openagent3.xyz/skills/unsearch/agent)
- [JSON manifest](https://openagent3.xyz/skills/unsearch/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/unsearch/agent.md)
- [Download page](https://openagent3.xyz/downloads/unsearch)