Install
openclaw skills install cloudsway-smartsearchPerforms real-time web searches to retrieve up-to-date online information, news, research data, and fact-checking results.
openclaw skills install cloudsway-smartsearchThis skill enables AI agents and LLM systems to perform web search and retrieve real-time information from the internet.
It works similarly to modern search engines such as:
The skill allows AI systems to access up-to-date information, including:
Use this skill when the user asks about:
• searching the internet
• latest news or current events
• information from websites
• online research topics
• finding articles or documentation
• verifying facts
• gathering information from multiple sources
Example queries:
Search the internet for general information.
Example:
search the web for latest AI developments
Retrieve recent news or trending events.
Example:
latest AI news this week
AI agents gathering information from multiple sources.
Example:
research agentic AI architecture
Verify claims using multiple web sources.
Example:
check if GPT-5 has been released
Sign up at:
export CLOUDSWAYS_AK="your-api-key"
That's it. The skill is ready to use.
cd ~/scripts/search
./scripts/search.sh '{"q": "your search query"}'
# Basic search
./scripts/search.sh '{"q": "latest AI developments"}'
# Search with time filter
./scripts/search.sh '{"q": "OpenAI news", "freshness": "Week", "count": 20}'
# Deep research
./scripts/search.sh '{"q": "Agentic AI architecture", "enableContent": true, "mainText": true}'
curl -s -G \
--url "https://aisearchapi.cloudsway.net/api/search/smart" \
--header "Authorization: ${CLOUDSWAYS_AK}" \
--data-urlencode "q=your search query" \
--data-urlencode "count=20" \
--data-urlencode "freshness=Week"
curl -s -G \
--url "https://aisearchapi.cloudsway.net/api/search/smart" \
--header "Authorization: ${CLOUDSWAYS_AK}" \
--data-urlencode "q=latest AI news February 2026" \
--data-urlencode "count=20" \
--data-urlencode "freshness=Week" \
--data-urlencode "enableContent=true" \
--data-urlencode "mainText=true"
GET https://aisearchapi.cloudsway.net/api/search/smart
| Header | Type | Value | Description |
|---|---|---|---|
| Authorization | String | {YOUR_AK} | Your assigned API Key |
| Parameter | Required | Type | Default | Description |
|---|---|---|---|---|
| q | Yes | String | - | Search query |
| count | No | Integer | 10 | Must be 10 / 20 / 30 / 40 / 50 |
| freshness | No | String | null | Day / Week / Month |
| offset | No | Integer | 0 | Pagination offset |
| enableContent | No | Boolean | false | Extract full text |
| contentType | No | String | TEXT | HTML / MARKDOWN / TEXT |
| contentTimeout | No | Float | 3.0 | Extraction timeout |
| mainText | No | Boolean | false | Smart summary fragments |
{
"queryContext": {
"originalQuery": "your search query"
},
"webPages": {
"value": [
{
"name": "Article Title",
"url": "https://example.com/article",
"datePublished": "2026-02-27T15:46:11.0000000",
"snippet": "Short summary...",
"mainText": "Relevant excerpts...",
"content": "Full webpage text...",
"score": 0.85
}
]
}
}
Choose the right field based on your needs:
| Field | Latency | Token Cost | Use Case |
|---|---|---|---|
| snippet | Fast | Low | Quick browsing |
| mainText | Medium | Medium | Focused research |
| content | Slower | High | Deep analysis |
{"q": "topic", "count": 10}
{"q": "topic", "count": 20, "freshness": "Week", "enableContent": true, "mainText": true}
{"q": "topic", "count": 20, "enableContent": true, "contentType": "MARKDOWN"}
Use curl directly if the script fails.
Valid values:
10 / 20 / 30 / 40 / 50
Check configuration:
echo $CLOUDSWAYS_AK
web search AI search internet search online search search engine Google search Bing search Perplexity search Brave search Tavily search AI research tool LLM web search AI agent search internet information retrieval
Last Updated: 2026-03-09
---