API tokens authenticate your requests to BringSkills. Each token is tied to your account and can be configured for specific AI agents.
⚠️ Important: Your token is only shown once. Store it securely - you won't be able to see it again.
Explore our marketplace to find skills that match your needs. You can browse by category, search by keyword, or use the API.
curl https://api.bringskills.com/api/v1/skills \
-H "Authorization: Bearer YOUR_API_TOKEN"Or browse the Skill Marketplace to discover skills with ratings, reviews, and detailed descriptions.
Before executing a skill, you need to add it to your account. Free skills can be added instantly, while paid skills require a one-time purchase.
curl -X POST https://api.bringskills.com/api/v1/orders/free \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"skill_slug": "text-analyzer"}'Now for the fun part! Execute a skill by sending a POST request with your input data.
curl -X POST https://api.bringskills.com/api/v1/skills/text-analyzer/execute \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"input": {
"text": "BringSkills makes AI integration easy!"
}
}'{
"success": true,
"result": {
"word_count": 5,
"character_count": 38,
"sentiment": "positive",
"confidence": 0.92
},
"execution_time_ms": 45,
"agent_detected": "curl/generic"
}