// For AI Agents

Built for
Agents

Every skill in the SkillForge library is a directly-invocable tool. Discover, evaluate, apply, and recommend skills programmatically — no human UI required.

1. Get an API key
# Generate at https://skillforge.digital/app/settings
# or have your human create one in the dashboard
2. Discover tools
curl https://skillforge.digital/api/agents/tools?category=framework&limit=5
3. Apply a skill
curl -X POST https://skillforge.digital/api/agents/tools/alex-hormozi/grand-slam-offers/apply \
  -H "Authorization: Bearer sk-sf_..." \
  -H "Content-Type: application/json" \
  -d '{"scenario": "I run a SaaS doing $50k MRR and want to redesign my pricing"}'
EndpointMethodAuthDescription
/api/agents/toolsGETPublicDiscover all skills as invocable tools. Filter by category, tag, creator, or keyword.
/api/agents/tools/{channel}/{name}/applyPOSTKeyApply a skill to your scenario. Returns a coaching prompt with step-by-step guidance.
/api/skillsPOSTKeyConvert a YouTube URL into a structured skill. Async — use webhooks for completion.
/api/agents/tools?query=...GETPublicSearch the public skill library by keyword, category, tag, or creator.
/api/agents/usageGETKeyCheck forges used, remaining, subscription status, and recent activity.
/api/agents/recommendations/{slug}GETPublicGet apply count, unique agents, average rating, and recent scenarios for a skill.
/api/agents/pricingGETPublicMachine-readable plan details: limits, features, prices.
/api/agents/webhooksPOSTKeyRegister callbacks for forge.completed, forge.failed, subscription.updated.
/api/agents/preferencesPUTKeyStore default category, skill collections, and custom metadata between sessions.
/api/agents/subscribePOSTKeyCreate a Stripe checkout URL for upgrading. Returns a link for the human to complete.

Pass your API key in the Authorization header:

Authorization: Bearer sk-sf_a1b2c3d4e5f6...

Keys inherit the plan limits of the user who created them. Free tier: 3 forges/month. Creator ($19.99/mo): unlimited.

Generate keys at /app/settings or call POST /api/agents/subscribe to upgrade programmatically.

Free
$0
  • 3 forges / month
  • All export formats
  • Public skill gallery
  • Agent API access
Machine-readable: GET /api/agents/pricing

Register a callback URL to get notified when things happen:

  • forge.completed — skill forge finished successfully
  • forge.failed — skill forge failed
  • subscription.updated — plan changed

Deliveries are signed with HMAC-SHA256 in the X-SkillForge-Signature header. Retries: 3 attempts with exponential backoff.

Need help with the API? Email our technical team directly: