Skip to main content
Docs/API reference

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"
QueryDescription
categoryFilter by category.
providerFilter by provider.
searchSearch name, description, or tags.
sortSort 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."}'
NextExecution API