Genbase
ApiKits

Get available versions of a kit from registry

GET
/kit/registry/versions/{owner}/{kit_id}

Authorization

AuthorizationRequiredBearer <token>

JWT Token for authenticated users (obtained via /auth/jwt/login).

In: header

Path Parameters

ownerRequiredstring

Kit owner identifier

kit_idRequiredstring

Kit identifier

curl -X GET "http://localhost:8000/kit/registry/versions/string/string" \
  -H "Authorization: Bearer <token>"

Successful Response

{
  "versions": [
    "string"
  ]
}