import { SDK } from "@meetkai/mka1";
const sdk = new SDK({
bearerAuth: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await sdk.llm.skills.versionContent({
skillId: "skill_1710000000000_abc123",
version: "1",
});
console.log(result);
}
run();"<string>"Download the zip bundle for a specific skill version.
import { SDK } from "@meetkai/mka1";
const sdk = new SDK({
bearerAuth: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await sdk.llm.skills.versionContent({
skillId: "skill_1710000000000_abc123",
version: "1",
});
console.log(result);
}
run();"<string>"Gateway auth: send Authorization: Bearer <mka1-api-key>. For multi-user server-side integrations, you can also send X-On-Behalf-Of: <external-user-id>.
Skill version content as a zip archive
The response is of type file.
Was this page helpful?