Skip to main content
GET
/
api
/
v2
/
skills
List skills
curl --request GET \
  --url https://agp.eu.hcompany.ai/api/v2/skills \
  --header 'Authorization: Bearer <token>'
Returns a paginated list of skills in your catalog. Returns a paginated list of Skill objects.

Query parameters

page
integer
default:"1"
Page number (1-based).
size
integer
default:"10"
Items per page. Maximum: 1000.
sort
string
default:"-created_at"
Sort order. Options: created_at, -created_at, name, -name.
name
string
Name prefix filter.

Examples

curl "https://agp.eu.hcompany.ai/api/v2/skills" \
  -H "Authorization: Bearer $H_API_KEY"
Each item is a full Skill object.
Response
{
  "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
}