Install
openclaw skills install decentralized-searchProduction-ready decentralized search for AI agents. Privacy-first, uncensored web search via distributed node infrastructure.
openclaw skills install decentralized-searchEndpoint: https://na-us-1.presearch.com/v1/search
Method: GET
Auth: Bearer Token
Rate Limit: 100 requests/minute
Authorization: Bearer YOUR_API_KEY_HERE
| 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 |
{
"data": {
"standardResults": [
{
"title": "string",
"link": "string",
"description": "string"
}
],
"pagination": {
"current_page": 1,
"has_next": true
}
}
}
# Python
with PresearchSkill(api_key) as skill:
results = skill.search("AI agents")
// Node.js
const results = await skill.search({ query: "AI agents" });