Skills API
List, filter, inspect, and submit skills.
Last updated July 2, 2026
List skills
curl "http://localhost:3000/api/skills?category=research&sort=runs"| Query | Description |
|---|---|
| category | Filter by category. |
| provider | Filter by provider. |
| search | Search name, description, or tags. |
| sort | Sort by newest, fee, or run count. |
Create skill
curl -X POST http://localhost:3000/api/skills \
-H "Content-Type: application/json" \
-d '{"name":"Research Copilot","description":"Summarizes market research","category":"research","fee":0.5,"builderWallet":"WALLET","systemPrompt":"You are a concise research analyst."}'