Skip to main content
GET
/
v1
/
instances
/
{instance_id}
/
skills
curl -X GET "https://api.chowder.dev/v1/instances/ins_abc123/skills?eligible_only=true" \
  -H "Authorization: Bearer YOUR_API_KEY"
[
  {
    "name": "web-search",
    "description": "Search the web and return summarized results.",
    "source": "clawhub",
    "ready": true
  },
  {
    "name": "image-gen",
    "description": "Generate images from text prompts.",
    "source": "clawhub",
    "ready": true
  }
]
Returns the skills available on an instance. By default this includes all skills — both installed and uninstalled. Use the eligible_only query parameter to filter down to just the ones that are ready to go.

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.

Query Parameters

eligible_only
boolean
default:"false"
When true, only returns skills that are fully installed and ready to use.

Response

Returns an array of skill objects.
skills
array
curl -X GET "https://api.chowder.dev/v1/instances/ins_abc123/skills?eligible_only=true" \
  -H "Authorization: Bearer YOUR_API_KEY"
[
  {
    "name": "web-search",
    "description": "Search the web and return summarized results.",
    "source": "clawhub",
    "ready": true
  },
  {
    "name": "image-gen",
    "description": "Generate images from text prompts.",
    "source": "clawhub",
    "ready": true
  }
]