Skip to main content
POST
/
v1
/
skills
Publish Skill
curl --request POST \
  --url https://api.example.com/v1/skills \
  --header 'Content-Type: application/json' \
  --data '
{
  "slug": "<string>",
  "title": "<string>",
  "description": "<string>",
  "category": "<string>",
  "long_description": "<string>",
  "type": "skill",
  "price_cents": 0,
  "platforms": [
    "code",
    "cowork",
    "web"
  ]
}
'
{
  "slug": "<string>",
  "id": "<string>",
  "status": "<string>",
  "message": "<string>"
}

Body

application/json
slug
string
required
Required string length: 3 - 60
title
string
required
Required string length: 3 - 100
description
string
required
Required string length: 10 - 500
category
string
required
Required string length: 2 - 50
long_description
string | null
type
string
default:skill
price_cents
integer
default:0
Required range: x >= 0
platforms
string[]

Response

Successful Response

slug
string
required
id
string
required
status
string
required
message
string
required