Skill Items
Skill items attach integrations and providers to skills.
Skill Items object
Attributes
object
Stringid
Stringstatus
Enumtype
Enumskill_id
Stringintegration
ObjectNullableprovider
ObjectNullablecreated_at
Date{"object": "skill.item","status": "active","type": "integration","integration": {"object": "integration#preview","metadata": {},"configuration": {}},"provider": {"object": "provider#preview","id": "pro_5gHjKlMnPqRsTuVw","name": "GitHub","description": "Connect to GitHub repositories, issues, and pull requests","slug": "github","created_at": "2025-09-15T10:30:00.000Z","updated_at": "2026-01-10T14:45:00.000Z"}}
List skill items
Returns a paginated list of items for a skill.
URL Parameters
skill_id
StringThe unique identifier for the skill
Query Parameters
limit
NumberOptionalafter
StringOptionalbefore
StringOptionalcursor
StringOptionalorder
EnumOptionalstatus
UnionOptionaltype
UnionOptionalid
UnionOptionalintegration_id
UnionOptionalprovider_id
UnionOptionalcreated_at
ObjectOptionalFilter skill item creation time by date range
curl -X GET "https://api.metorial.com/skills/ski_Rm4Mnheq2bfEPhBhP7SY/items" \-H "Authorization: Bearer metorial_sk_..."
Get skill item
Retrieves a specific skill item.
URL Parameters
skill_id
StringThe unique identifier for the skill
skill_item_id
StringThe unique identifier for the skill_item
curl -X GET "https://api.metorial.com/skills/ski_Rm4Mnheq2bfEPhBhP7SY/items/ski_Rm4Mnheq2bfEPhBhP7SY" \-H "Authorization: Bearer metorial_sk_..."
Create skill item
Creates a new item on a skill.
URL Parameters
skill_id
StringThe unique identifier for the skill
Request Body
type
Stringprovider_id
Stringtype
Stringintegration_id
Stringcurl -X POST "https://api.metorial.com/skills/ski_Rm4Mnheq2bfEPhBhP7SY/items" \-H "Content-Type: application/json" \-H "Authorization: Bearer metorial_sk_..." \-d '{"type": "example_type","provider_id": "example_provider_id","integration_id": "example_integration_id"}'
Delete skill item
Archives a skill item.
URL Parameters
skill_id
StringThe unique identifier for the skill
skill_item_id
StringThe unique identifier for the skill_item
curl -X DELETE "https://api.metorial.com/skills/ski_Rm4Mnheq2bfEPhBhP7SY/items/ski_Rm4Mnheq2bfEPhBhP7SY" \-H "Authorization: Bearer metorial_sk_..."