Skip to main content
GET
/
v1
/
skills
Get Skills
curl --request GET \
  --url https://api.example.com/v1/skills
{
  "items": [
    {
      "slug": "<string>",
      "title": "<string>",
      "description": "<string>",
      "category": "<string>",
      "type": "<string>",
      "price_cents": 123,
      "currency": "<string>",
      "security_status": "<string>",
      "download_count": 123,
      "author": {
        "display_name": "<string>",
        "github_username": "<string>"
      }
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}

Query Parameters

category
string | null
Maximum string length: 50
type
string | null
sort
string | null
price_filter
string | null
security_status
string | null
limit
integer
default:20
Required range: 1 <= x <= 100
offset
integer
default:0
Required range: x >= 0

Response

Successful Response

items
SkillSummary · object[]
required
total
integer
required
limit
integer
required
offset
integer
required