presearch

ClawSkills 作者 nosytlabs v1.0.1

Production-ready decentralized search for AI agents. Privacy-first, uncensored web search via distributed node infrastructure.

源码 ↗

安装 / 下载方式

TotalClaw CLI推荐
totalclaw install clawskills:nosytlabs~nosytlabs-decentralized-search
cURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/clawskills%3Anosytlabs~nosytlabs-decentralized-search/file -o nosytlabs-decentralized-search.md
Git 仓库获取源码
git clone https://github.com/openclaw/skills/commit/1c37f4f2741244e44f642755c97c53099c6a2988
# Presearch Search API

**Endpoint:** `https://na-us-1.presearch.com/v1/search`  
**Method:** GET  
**Auth:** Bearer Token  
**Rate Limit:** 100 requests/minute

## Authentication
```http
Authorization: Bearer YOUR_API_KEY_HERE
```

## Parameters

| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| `q` | string | ✅ | - | Search query |
| `lang` | string | ❌ | en-US | Language code |
| `time` | string | ❌ | any | any, day, week, month, year |
| `page` | string | ❌ | 1 | Page number |
| `safe` | string | ❌ | 1 | Safe search |

## Response
```json
{
  "data": {
    "standardResults": [
      {
        "title": "string",
        "link": "string",
        "description": "string"
      }
    ],
    "pagination": {
      "current_page": 1,
      "has_next": true
    }
  }
}
```

## Error Codes
- 401: Invalid API key
- 402: Payment required  
- 422: Invalid parameters
- 429: Rate limit exceeded

## Usage
```python
# Python
with PresearchSkill(api_key) as skill:
    results = skill.search("AI agents")
```

```javascript
// Node.js
const results = await skill.search({ query: "AI agents" });
```

## Privacy Features
- No tracking or profiling
- Decentralized node network
- Encrypted traffic
- Uncensored results