gsdata-search
by @urhd528
Searches the projects-databus.gsdata.cn API for data using provided project ID, signature, keywords, and returns results as JSON with optional limit.
clawhub install gsdata-searchπ About This Skill
GS Data Search
Description
A skill that provides a simple interface to search data from projects-databus.gsdata.cn API.
Installation
This skill is automatically available when installed in the Claude Code plugins directory.
Usage
To use this skill, you need to provide the following parameters:
Example
from gsdata_search import searchresult = search(
project_id="your_project_id",
sign="your_signature",
keywords="your_search_keywords",
posttime_start="2026-03-01 00:00:00",
posttime_end="2026-03-01 23:59:59",
limit=20
)
print(result)
API Reference
search(project_id, sign, keywords, posttime_start, posttime_end, limit=10)
Searches the GS Data API for data matching the keywords.
#### Parameters:
#### Returns:
#### Response Structure:
[
{
"news_title": "News title",
"news_uuid": "123456789",
"media_name": "Media name",
"news_posttime": "2026-03-01 10:30:00",
"news_emotion": "positive",
"news_url": "https://example.com/news/123",
"news_digest": "News digest..."
}
]
Notes
π‘ Examples
from gsdata_search import searchresult = search(
project_id="your_project_id",
sign="your_signature",
keywords="your_search_keywords",
posttime_start="2026-03-01 00:00:00",
posttime_end="2026-03-01 23:59:59",
limit=20
)
print(result)