cURL
curl --request GET \ --url https://api.example.com/api/models/{model_id}/versions \ --header 'Authorization: Bearer <token>'
{ "items": [ { "model_version_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "model_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "version": 123, "status": "<string>", "created_at": "2023-11-07T05:31:56Z", "dataset_version_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "training_job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "artifact_uri": "<string>", "params_json": {}, "metrics_json": {}, "ready_at": "2023-11-07T05:31:56Z" } ] }
List all versions of a model (history / comparison / reproducibility).
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response
Response for listing model versions.
Show child attributes
Was this page helpful?