GET
/
api
/
svc
/
v1
/
model-catalogues
/
finetune-specs
curl --request GET \
  --url https://{controlPlaneURL}/api/svc/v1/model-catalogues/finetune-specs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "finetuneType": "qlora",
      "metadata": {},
      "spec": {},
      "isAvailableInWorkspace": true
    }
  ],
  "pagination": {
    "total": 100,
    "offset": 0,
    "limit": 10
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
default:100

Number of items per page

Required range: 1 <= x <= 1000
Example:

10

offset
integer
default:0

Number of items to skip

Required range: x >= 0
Example:

0

modelVersionFqn
string

FQN of the Model Version

huggingfaceHubUrl
string

huggingface hub url

workspaceId
string
required

workspace id

huggingfaceHubTokenSecretFqn
string

Huggingface hub token secret

Response

200
application/json
Returns finetuning specifications for the model version or HuggingFace model URL And also the response includes paginated data.
data
object[]
required

Array of ModelFinetuneSpec

pagination
object
required

Pagination information