Search and discover AI Agent skills via the SkillScope public API. Use when a user wants to find skills by keyword, browse categories, check leaderboards, vi...
Search, discover, and explore 18,000+ AI Agent skills via the SkillScope public API. Covers skill search, category browsing, leaderboards, author profiles, similar skill recommendations, starter kits, and guide articles.
No API key required for basic usage (20 req/min, 200 req/day).
For higher limits, request a free API key and pass it via header:
curl -H "X-API-Key: sk-your-key-here" https://skillscope.cn/api/v1/skills
API key limits: 60 req/min, 5,000 req/day.
https://skillscope.cn/api/v1
Find skills by keyword or natural language description. Uses hybrid search (full-text + semantic + reranker).
curl "https://skillscope.cn/api/v1/search?q=web+search"
Response includes results[] with id, name, author, description, description_zh, description_en, categories, security_grade, quality_score, downloads, stars.
Paginated skill listing sorted by quality score.
curl "https://skillscope.cn/api/v1/skills?page=1&page_size=20"
Parameters:
page: page number (default 1)page_size: items per page (1-50, default 50)Daily-rotating featured skills selected from top-rated popular skills.
curl "https://skillscope.cn/api/v1/skills/featured?limit=6"
Get full details for a specific skill by its ID (author/name format).
curl "https://skillscope.cn/api/v1/skills/steipete/weather"
Response includes full analysis, security scan results, community stats, and ClawHub data.
List all categories with skill counts.
curl "https://skillscope.cn/api/v1/categories"
Get skills in a specific category:
curl "https://skillscope.cn/api/v1/categories/security?page=1&page_size=20"
Rank skills by downloads, stars, or installs. Optionally filter by category.
curl "https://skillscope.cn/api/v1/leaderboard?sort=downloads&page=1&page_size=30"
curl "https://skillscope.cn/api/v1/leaderboard?sort=stars&c=coding-ide"
Parameters:
sort: downloads (default), stars, or installsc: category filter (optional)page, page_size: paginationGet author info and all their published skills.
curl "https://skillscope.cn/api/v1/authors/steipete"
Find skills similar to a given skill (vector similarity).
curl "https://skillscope.cn/api/v1/similar/steipete/weather?top_k=5"
Curated skill bundles for common scenarios (30 kits across 6 categories).
List all kits:
curl "https://skillscope.cn/api/v1/starter-kits"
Get a specific kit with full skill details:
curl "https://skillscope.cn/api/v1/starter-kits/essential"
Available kits include: essential, daily-efficiency, meeting-notes, email-master, fullstack-dev, security-audit, and more.
Browse curated guide articles and category top-lists.
curl "https://skillscope.cn/api/v1/articles?category=top-list&page=1"
curl "https://skillscope.cn/api/v1/articles/top-security"
All endpoints return JSON. Example search response:
{
"query": "web search",
"results": [
{
"id": "arun-8687/tavily-search",
"name": "tavily",
"author": "arun-8687",
"description_zh": "AI优化的网络搜索,返回精准摘要结果。",
"description_en": "AI-optimized web search via Tavily API.",
"categories": ["search-research", "ai-llm"],
"security_grade": "B",
"quality_score": 8.5,
"downloads": 12580,
"stars": 45
}
],
"total": 1
}
| Tier | Per Minute | Per Day |
|---|---|---|
| Anonymous (no key) | 20 | 200 |
| Free API Key | 60 | 5,000 |
Rate limit info is included in the X-RateLimit-Policy response header. When limited, the API returns HTTP 429 with a Retry-After header.
author/name format (e.g. steipete/weather)ZIP package — ready to use