For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dashboard
User GuideDeveloper GuidesAPI Reference
User GuideDeveloper GuidesAPI Reference
    • Overview
  • Runtype API
      • GETList pending skill proposals
      • POSTApprove a skill proposal
      • POSTReject a skill proposal
Dashboard
LogoLogo
Runtype APISkill Proposals

List pending skill proposals

GET
/v1/skill-proposals
GET
/v1/skill-proposals
$curl https://api.runtype.com/v1/skill-proposals \
> -H "Authorization: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "data": [
3 {
4 "proposalId": "a1b2c3d4-e5f6-7890-ab12-cd34ef567890",
5 "skillName": "Natural Language Processing",
6 "description": "Proposal to add advanced NLP capabilities for text analysis and generation.",
7 "submittedBy": "jane.doe@example.com",
8 "submittedAt": "2024-05-20T10:15:30Z",
9 "status": "pending"
10 }
11 ]
12}
Was this page helpful?
Previous

Approve a skill proposal

Next
Built with

Authentication

AuthorizationBearer
API key or Clerk session token

Response

Pending proposals
datalist of maps from strings to any

Errors

401
Unauthorized Error
403
Forbidden Error