Skip to main content
GET
/
api
/
v1
/
llm
/
skills
/
{skill_id}
/
versions
/
{version}
Typescript (SDK)
import { SDK } from "@meetkai/mka1";

const sdk = new SDK({
  bearerAuth: "<YOUR_BEARER_TOKEN_HERE>",
});

async function run() {
  const result = await sdk.llm.skills.getVersion({
    skillId: "skill_1710000000000_abc123",
    version: "1",
  });

  console.log(result);
}

run();
{
  "id": "skver_1710000000000_xyz789",
  "created_at": 1710000000,
  "description": "A skill for deploying applications",
  "name": "deploy-app",
  "object": "skill.version",
  "skill_id": "skill_1710000000000_abc123",
  "version": "1"
}

Authorizations

Authorization
string
header
required

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>.

Path Parameters

skill_id
string
required
version
string
required

Response

200 - application/json

OK

id
string
required

Unique identifier for the version

created_at
integer
required

Unix timestamp when the version was created

Required range: -9007199254740991 <= x <= 9007199254740991
description
string
required

Description of the skill version

name
string
required

Name of the skill version

skill_id
string
required

Parent skill identifier

version
string
required

Version number

object
any
default:skill.version