> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stateset.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Training Status (v1)

> Get v1 training job status.

Get v1 training job status.

### Path parameters

<ParamField path="job_id" type="string" required />

### Response

`TrainingStatusResponseV1`

<ResponseField name="job_id" type="string" required />

<ResponseField name="status" type="string" required />

<ResponseField name="metrics" type="object" />

### Status codes

| Code  | Meaning                 |
| ----- | ----------------------- |
| `200` | Successful Response     |
| `401` | Authentication required |
| `422` | Validation Error        |
| `429` | Rate limit exceeded     |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'http://localhost:8000/api/v1/training/{job_id}' \
    --header 'Authorization: Bearer YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "job_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "status": "pending",
    "metrics": {}
  }
  ```
</ResponseExample>
