Welcome to Theo Docs — the AI orchestration API.
Install a marketplace skill for the authenticated user.
cURL
curl --request POST \ --url https://api.example.com/api/v1/skills \ --header 'Content-Type: application/json' \ --data ' { "skillId": "<string>" } '
curl -X POST https://hitheo.ai/api/v1/skills \ -H "Authorization: Bearer $THEO_API_KEY" \ -H "Content-Type: application/json" \ -d '{"skillId": "skill_abc123"}'
{ "installed": true }
DELETE
curl -X DELETE https://hitheo.ai/api/v1/skills \ -H "Authorization: Bearer $THEO_API_KEY" \ -H "Content-Type: application/json" \ -d '{"skillId": "skill_abc123"}'
validation_error
skillId
not_found
Was this page helpful?