API

One API call to expertise

Activate expert skills in Claude Code via a standard REST API or native MCP protocol. Bearer token auth, JSON responses, rate-limited per plan.

cURL

terminal
$ curl -s https://supaskills.ai/api/v1/skills/api-design-architect \
-H "Authorization: Bearer sk_supa_..." \
| jq .
{
"data": {
"name": "API Design Architect",
"tier": "platinum",
"system_prompt": "You are an expert..."
}
}

TypeScript

activate-skill.ts
const res = await fetch(
"https://supaskills.ai/api/v1/skills/api-design-architect",
{
headers: { Authorization: `Bearer ${API_KEY}` }
}
);
const { data } = await res.json();
MCP Protocol

Native Claude Code integration

Configure supaskills as an MCP server. Search and activate skills directly from Claude Code's terminal. JSON-RPC 2.0 with SSE streaming.

search_skills
load_skill
load_powerpack
list_categories
suggest_skill
.claude/settings.json
{
"mcpServers": {
"supaskills": {
"url": "https://supaskills.ai/api/mcp",
"headers": {
"Authorization": "Bearer sk_supa_..."
}
}
}
}

Authentication

1

Sign up

Create an account and verify your email.

2

Generate API key

Go to Dashboard > Settings and create a key prefixed sk_supa_.

3

Use Bearer token

Pass it as Authorization: Bearer sk_supa_... in every request.

Built for trust.

Security isn't a feature we added later. It's how the system works.

Integrity verified

Every skill passes automated checks before delivery. Always.

Access controlled

Tier-gated loading. Your plan determines which skills you can access.

Keys protected

API keys are hashed on storage. We never see or store your key in plaintext.

Continuously tested

36 security checks run on every deploy. 135 automated tests across 14 categories.

Rate limits per plan

PlanActive SlotsPer-minute limitPowerPacks
Free32No
Pro4215Yes
Max10030Yes
Get Your API Key