ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

presearch-search

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

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/nosytlabs/decentralized-search
Or

Presearch Search API

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

Authentication

Authorization: Bearer YOUR_API_KEY_HERE

Parameters

ParameterTypeRequiredDefaultDescription
qstring-Search query
langstringen-USLanguage code
timestringanyany, day, week, month, year
pagestring1Page number
safestring1Safe search

Response

{
  "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
with PresearchSkill(api_key) as skill:
    results = skill.search("AI agents")
// Node.js
const results = await skill.search({ query: "AI agents" });

Privacy Features

  • No tracking or profiling
  • Decentralized node network
  • Encrypted traffic
  • Uncensored results

Metadata

Author@nosytlabs
Stars1287
Views0
Updated2026-02-22
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-nosytlabs-decentralized-search": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.