---
title: "Fetch history of statuses for a fine-tuned model."
method: GET
path: "/v1/finetuning/finetuned-models/{finetuned_model_id}/events"
tags: ["/finetuning"]
deprecated: true
---

# Fetch history of statuses for a fine-tuned model.

`GET /v1/finetuning/finetuned-models/{finetuned_model_id}/events`

> **Deprecated.**

Returns a list of events that occurred during the life-cycle of the fine-tuned model.
The events are ordered by creation time, with the most recent event first.
The list can be paginated using `page_size` and `page_token` parameters.

## Path parameters

- `finetuned_model_id` string, required

## Query parameters

- `page_size` integer
- `page_token` string
- `order_by` string

## Headers

- `X-Client-Name` string

## Response `200`

A successful response.

- ListEventsResponse — Response to a request to list events of a fine-tuned model.
  - `events` Event[] — List of events for the fine-tuned model.
    - `user_id` string — ID of the user who initiated the event. Empty if initiated by the system.
    - `status` 'STATUS_UNSPECIFIED' | 'STATUS_FINETUNING' | 'STATUS_DEPLOYING_API' | 'STATUS_READY' | 'STATUS_FAILED' | 'STATUS_DELETED' | 'STATUS_TEMPORARILY_OFFLINE' | 'STATUS_PAUSED' | 'STATUS_QUEUED' — The possible stages of a fine-tuned model life-cycle. - STATUS_UNSPECIFIED: Unspecified status. - STATUS_FINETUNING: The fine-tuned model is being fine-tuned. - STATUS_DEPLOYING_API: Deprecated: The fine-tuned model is being deployed. - STATUS_READY: The fine-tuned model is ready to receive requests. - STATUS_FAILED: The fine-tuned model failed. - STATUS_DELETED: The fine-tuned model was deleted. - STATUS_TEMPORARILY_OFFLINE: Deprecated: The fine-tuned model is temporarily unavailable. - STATUS_PAUSED: Deprecated: The fine-tuned model is paused (Vanilla only). - STATUS_QUEUED: The fine-tuned model is queued for training.
    - `created_at` string, date-time — Timestamp when the event happened.
  - `next_page_token` string — Pagination token to retrieve the next page of results. If the value is "", it means no further results for the request.
  - `total_size` integer — Total count of results.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `500` — Internal Server Error
- `503` — Status Service Unavailable

---

[API](https://skmtc.net/cohere-ai/apis/api-reference.md) · [All operations](https://skmtc.net/cohere-ai/apis/api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/cohere-ai/api-reference/revisions/e567cbddb2cc/schema)
