Skip to main content
GET
/
api
/
v1
/
skills
/
search
Search Skills
curl --request GET \
  --url https://app.all-hands.dev/api/v1/skills/search \
  --header 'X-Access-Token: <api-key>'
{
  "items": [
    {
      "name": "<string>",
      "type": "<string>",
      "source": "<string>",
      "triggers": [
        "<string>"
      ]
    }
  ],
  "next_page_id": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://allhandsai-add-v1-api-reference.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Access-Token
string
header
required

Query Parameters

page_id
string | null
limit
integer
default:100
Required range: x <= 100

Response

Successful Response

Paginated response for the skills search endpoint.

items
SkillInfo · object[]
required
next_page_id
string | null