Skip to main content
GET
/
v1
/
instances
/
{instance_id}
/
skills
/
{skill_name}
curl -X GET https://api.chowder.dev/v1/instances/ins_abc123/skills/web-search \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "name": "web-search",
  "description": "Search the web and return summarized results.",
  "source": "clawhub",
  "path": "/skills/web-search",
  "ready": true
}
Returns metadata for a specific skill installed on the instance.

Authentication

Requires an org-level API key or a scoped token with the configure permission.

Path Parameters

instance_id
string
required
The ID of the instance.
skill_name
string
required
The name of the skill (e.g. web-search).

Response

name
string
The skill’s identifier.
description
string
A short description of the skill.
source
string
Where the skill was installed from.
path
string
The filesystem path to the skill on the instance.
ready
boolean
Whether the skill is fully configured and operational.
curl -X GET https://api.chowder.dev/v1/instances/ins_abc123/skills/web-search \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "name": "web-search",
  "description": "Search the web and return summarized results.",
  "source": "clawhub",
  "path": "/skills/web-search",
  "ready": true
}