List official Recommended by ShareOut skills
GET
/v1/skills/recommended
const url = 'https://shareout.site/v1/skills/recommended';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://shareout.site/v1/skills/recommended \ --header 'Authorization: Bearer <token>'Curated official skills for the Library strip. Workspace-agnostic — any signed-in user (all plans). Read-only; maintained by ShareOut daily sync.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Official skill cards
Media type application/json
object
skills
required
Array<object>
object
slug
required
string
artifact_id
required
string
name
required
string
summary
required
string
category
required
string
tags
required
Array<string>
attribution
string
uses
required
integer
url
required
string format: uri
official
required
boolean
Example
{ "skills": [ { "official": true } ]}