API Endpoints
Integrate Agent Skills into your application using these RESTful API endpoints.
GET
/api/skillsSearch and filter agent skills
Parameters:
q(string)- Search query to filter skills by name or descriptionowner(string)- Filter by owner (e.g., anthropic, notion, composio)category(string)- Filter by categorytag(string)- Filter by tagResponse:
{
"skills": "Array<Skill>",
"count": "number"
}GET
/api/skills/{id}/filesGet all files for a specific skill
Parameters:
id(string)required- Unique identifier of the skillResponse:
{
"files": "Array<{ path: string, name: string, content: string, isDirectory: boolean }>"
}Examples:
Example:
https://openskills.space/api/skills/40052610-0196-41b5-9fb1-e88a3b283af9/filesTry →GET
/api/download/{id}Download a skill as a ZIP file
Parameters:
id(string)required- Unique identifier of the skillResponse:
application/zip - ZIP file containing all skill files
Examples:
Example:
https://openskills.space/api/download/40052610-0196-41b5-9fb1-e88a3b283af9Try →