B
BringSkills
|Documentation
MarketplaceDashboardBack to Home

BringSkills Documentation

Everything you need to integrate, use, and create AI skills

Base URL:https://api.bringskills.com/api/v1

Quick Start

Get up and running with BringSkills in 3 simple steps.

1

Create an Account

Sign up for a free account to access the skill marketplace.

Sign Up Free
2

Get a Skill

Browse the Marketplace and acquire skills. Free skills can be added instantly.

3

Create an API Token

Go to Dashboard → API Tokens → Create Token. Save it securely.

⚠️ Tokens are shown only once. Store it in a secure location.

Using Skills

Execute skills by sending HTTP requests to our API.

Basic Request

Execute a skill
curl -X POST "https://api.bringskills.com/api/v1/skills/{skill-slug}/execute" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"input": {"your": "parameters"}}'

Response Format

json
{
  "success": true,
  "result": {
    // Skill output data
  },
  "execution_time_ms": 45
}

Code Examples

Python
import requests

response = requests.post(
    "https://api.bringskills.com/api/v1/skills/{slug}/execute",
    headers={"Authorization": "Bearer YOUR_TOKEN"},
    json={"input": {"text": "Hello world"}}
)
result = response.json()
JavaScript
const response = await fetch(
  "https://api.bringskills.com/api/v1/skills/{slug}/execute",
  {
    method: "POST",
    headers: {
      "Authorization": "Bearer YOUR_TOKEN",
      "Content-Type": "application/json"
    },
    body: JSON.stringify({ input: { text: "Hello world" } })
  }
);
const result = await response.json();

Authentication

All API requests require authentication via Bearer token.

Authorization Header
Authorization: Bearer sk-bring-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

✓ Do

  • • Store tokens in environment variables
  • • Use server-side code for API calls
  • • Rotate tokens periodically

✗ Don't

  • • Expose tokens in frontend code
  • • Commit tokens to version control
  • • Share tokens publicly

API Reference

GET/skillsList all available skills
GET/skills/{slug}Get skill details
POST/skills/{slug}/executeExecute a skill
GET/api-keysList your API keys
POST/api-keysCreate a new API key
DELETE/api-keys/{id}Delete an API key
GET/ordersList your purchased skills
POST/orders/freeAcquire a free skill

Supported AI Agents

BringSkills automatically optimizes output for your AI agent.

OpenClaw
Claude Code
Cursor
Codex
Windsurf
Amazon Q
GitHub Copilot
Aider
Cody
Tabnine
JetBrains AI
Replit AI
View Agent Setup Guide

Error Handling

CodeMeaningSolution
401Invalid tokenCheck your API token
403Skill not purchasedAcquire the skill first
404Skill not foundVerify the skill slug
422Invalid inputCheck input parameters
429Rate limitedWait and retry
500Server errorRetry later

© 2026 BringSkills. All rights reserved.

Questions? Contact us at support@bringskills.com