Skip to main content
GET
/
models
/
{model_name}
/
versions
Model Versions
curl --request GET \
  --url https://api.example.com/models/{model_name}/versions \
  --header 'Authorization: Bearer <token>'
[
  {
    "model_name": "<string>",
    "version": "<string>",
    "uploaded_at": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Headers

xi-api-key
string | null

Path Parameters

model_name
string
required

Response

Successful Response

model_name
string
required

Model Name

Example:

"microsoft/resnet-50"

version
string
required

Version identifier

Example:

"06dbf5f73be4b5eca79e137e00c4825f467cd5b172c64b6c9255dc4b5a25a03a"

uploaded_at
string
required

Upload time

Example:

"2023-01-19T21:52:03.626241+00:00"