Skip to main content
GET
/
v1
/
skills
/
{slug}
Get Skill
curl --request GET \
  --url https://api.example.com/v1/skills/{slug}
{
  "slug": "<string>",
  "title": "<string>",
  "description": "<string>",
  "category": "<string>",
  "type": "<string>",
  "price_cents": 123,
  "currency": "<string>",
  "version": "<string>",
  "security_status": "<string>",
  "security_score": 123,
  "download_count": 123,
  "platforms": [
    "<string>"
  ],
  "long_description": "<string>",
  "trust_level": "<string>",
  "published_at": "<string>",
  "created_at": "<string>",
  "author": {
    "display_name": "<string>",
    "github_username": "<string>"
  }
}

Path Parameters

slug
string
required

Response

Successful Response

slug
string
required
title
string
required
description
string
required
category
string
required
type
string
required
price_cents
integer
required
currency
string
required
version
string
required
security_status
string
required
security_score
integer
required
download_count
integer
required
platforms
string[]
required
long_description
string | null
trust_level
string | null
published_at
string | null
created_at
string | null
author
AuthorSummary · object