> ## 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

> Get detailed status of a specific training job.

Get detailed status of a specific training job.

### Path parameters

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

### Response

`TrainingJobDetail`

<ResponseField name="training_id" type="string" required>
  Training job identifier
</ResponseField>

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

<ResponseField name="created_at" type="string (date-time)" required>
  Creation timestamp
</ResponseField>

<ResponseField name="started_at" type="string (date-time),null">
  Start timestamp
</ResponseField>

<ResponseField name="completed_at" type="string (date-time),null">
  Completion timestamp
</ResponseField>

<ResponseField name="progress" type="number">
  Progress percentage
</ResponseField>

<ResponseField name="current_episode" type="integer">
  Current training episode
</ResponseField>

<ResponseField name="total_episodes" type="integer">
  Total episodes
</ResponseField>

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

<ResponseField name="error" type="string,null">
  Error message if failed
</ResponseField>

<ResponseField name="config" type="object">
  Training configuration
</ResponseField>

### Status codes

| Code  | Meaning                 |
| ----- | ----------------------- |
| `200` | Training job details    |
| `401` | Authentication required |
| `404` | Training job not found  |
| `422` | Validation Error        |
| `429` | Rate limit exceeded     |

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "training_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "status": "pending",
    "created_at": "2026-08-31T14:22:05Z",
    "started_at": "2026-08-31T14:22:05Z",
    "completed_at": "2026-08-31T14:22:05Z",
    "progress": 0,
    "current_episode": 0,
    "total_episodes": 0,
    "metrics": {},
    "error": "string",
    "config": {}
  }
  ```
</ResponseExample>
