Skip to main content
GET
/
skills
/
custom
List custom skills
curl --request GET \
  --url https://api.case.dev/skills/custom \
  --header 'Authorization: Bearer <token>'
{
  "skills": [
    {
      "slug": "<string>",
      "name": "<string>",
      "summary": "<string>",
      "tags": [
        "<string>"
      ],
      "metadata": {},
      "version": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "next_cursor": "<string>",
  "has_more": true
}

Authorizations

Authorization
string
header
required

API key starting with sk_case_

Query Parameters

limit
integer
default:50

Maximum number of results (1-100)

Required range: 1 <= x <= 100
cursor
string

Cursor for pagination (skill ID from previous page)

tag
string

Filter by tag

Response

List of custom skills

skills
object[]
next_cursor
string | null
has_more
boolean