Integrate SkillFlow skills directly into your applications. Simple REST API, powerful results.
Create an account
Sign up at SkillFlow and navigate to your dashboard.
Generate an API key
Go to Dashboard → API Keys and create a new key.
Make your first request
Use the examples below to execute a skill via the API.
curl -X POST https://api.skillflow.ai/v1/skills/execute \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"skillId": 1,
"input": "Analyze this lead: John Smith, VP of Sales at Acme Corp, 500 employees, SaaS industry"
}'/v1/skillsList all approved skills with optional filters
Params: category?, search?, featured?, page?, limit?
/v1/skills/:slugGet full skill details including reviews and metrics
Params: slug (required)
/v1/skills/executeExecute a skill with input text and get AI-generated output
Params: skillId, input (required)
/v1/categoriesList all skill categories with counts
Params: none
/v1/statsGet platform-wide statistics and metrics
Params: none
{
"output": "The AI-generated response text...",
"durationMs": 3200,
"success": true
}| Status | Code | Description |
|---|---|---|
| 200 | OK | Skill executed successfully |
| 400 | Bad Request | Invalid input or missing required fields |
| 401 | Unauthorized | Missing or invalid API key |
| 404 | Not Found | Skill not found |
| 429 | Rate Limited | Too many requests — wait and retry |
| 500 | Server Error | Internal error — contact support |