curl --request POST \
--url https://api.skulabs.com/kit/add_item \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"kit_id": "<string>",
"item_id": "<string>",
"quantity": 123
}
'{
"success": true
}Add a component item to an existing kit.
curl --request POST \
--url https://api.skulabs.com/kit/add_item \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"kit_id": "<string>",
"item_id": "<string>",
"quantity": 123
}
'{
"success": true
}Documentation Index
Fetch the complete documentation index at: https://skulabs.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Item added to kit
Whether the operation succeeded