GET
/
models
/
{modelName}
/
revisions
curl --request GET \
  --url https://api.blaxel.ai/v0/models/{modelName}/revisions \
  --header 'Authorization: Bearer <token>'
[
  {
    "active": true,
    "canary": true,
    "createdAt": "<string>",
    "createdBy": "<string>",
    "id": "<string>",
    "previousActive": true,
    "status": "<string>",
    "trafficPercent": 123
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

modelName
string
required

Name of the model

Response

200 - application/json

successful operation

The response is of type object[].