> ## Documentation Index
> Fetch the complete documentation index at: https://hub.hcompany.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List skills

> Browse your skill catalog.

Returns a paginated list of skills in your catalog.

**Returns** a paginated list of [Skill](/computer-use-agents/skills/overview) objects.

***

## Query parameters

<ParamField query="page" type="integer" default="1">
  Page number (1-based).
</ParamField>

<ParamField query="size" type="integer" default="10">
  Items per page. Maximum: `1000`.
</ParamField>

<ParamField query="sort" type="string" default="-created_at">
  Sort order. Options: `created_at`, `-created_at`, `name`, `-name`.
</ParamField>

<ParamField query="name" type="string">
  Case-insensitive substring match on the skill name.
</ParamField>

***

## Examples

<CodeGroup>
  ```bash cURL theme={null}
  curl "https://agp.eu.hcompany.ai/api/v2/skills" \
    -H "Authorization: Bearer $HAI_API_KEY"
  ```

  ```python Python theme={null}
  from hai_agents import Client

  client = Client()

  page = client.skills.list_skills()
  for skill in page.items:
      print(skill.name)
  ```

  ```typescript TypeScript theme={null}
  import { HaiAgentsClient } from "hai-agents";

  const client = new HaiAgentsClient();

  const page = await client.skills.listSkills();
  for (const skill of page.items) {
    console.log(skill.name);
  }
  ```
</CodeGroup>

Each item is a full [Skill](/computer-use-agents/skills/overview) object.

```json Response theme={null}
{
  "items": [
    {
      "name": "extract-table-data",
      "description": "Extract structured data from HTML tables into JSON.",
      "body": "When you encounter an HTML table, extract all rows and columns into a JSON array of objects...",
      "source": null,
      "url_pattern": null
    }
  ],
  "page": 1,
  "total": 5
}
```
