Skip to main content

Skills API

The Skills API lets you browse, search, and execute domain-specific equation skills. Each skill bundles 1–4 operators and runs the 7-step wizard protocol automatically.

Endpoints

GET /api/skills

List all available skills with categories and operator bindings.

curl https://www.zeq.dev/api/skills

GET /api/skills/:id

Get a single skill by ID with full metadata, equations, and usage examples.

POST /api/skills/execute

Execute a skill with a natural-language query.

curl -X POST https://www.zeq.dev/api/skills/execute \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"skillId": "orbital-mechanics", "query": "ISS orbital period"}'

POST /api/skills/generate

Generate a new skill from a natural-language description using the AI Skills Generator.

Categories

Skills are organised into 7 categories: physics, engineering, earth-science, quantum, computer-science, medical-physics, and awareness.

Related

Skills Library App · AI Skills Recipe · Compute API