---
title: "Get model resources"
method: GET
path: "/rl/model-resources/{model_resources_id}"
tags: ["RL"]
---

# Get model resources

`GET /rl/model-resources/{model_resources_id}`

Gets a model resource by its ID and returns its details.

## Path parameters

- `model_resources_id` string, required — ID of the model resource

## Response `200`

Model resource details

- RLModelResources — Allocated GPU resources that training sessions attach to
  - `id` string, required — Unique identifier for the model resource
  - `status` 'MODEL_RESOURCES_STATUS_PENDING' | 'MODEL_RESOURCES_STATUS_CREATING' | 'MODEL_RESOURCES_STATUS_READY' | 'MODEL_RESOURCES_STATUS_ERROR' | 'MODEL_RESOURCES_STATUS_STOPPED' | 'MODEL_RESOURCES_STATUS_STOPPING', required — Lifecycle status of a model resource
  - `error` RLModelResourcesError — Structured detail for the model resource's current error
    - `code` 'MODEL_RESOURCES_ERROR_CODE_CAPACITY_UNAVAILABLE' | 'MODEL_RESOURCES_ERROR_CODE_PROVISIONING_FAILED', required — Finite machine-readable model resource lifecycle error code
    - `message` string, required — User-safe human-readable detail for the current status
    - `occurred_at` string, date-time, required — Timestamp when this error was reported
  - `base_model` string, required — Base model the resource is provisioned for
  - `compute_config` RLComputeConfig, required — Compute layout for a model resource
    - `num_generator_replicas` integer, required — Number of generator replicas. 0 means the resource runs the trainer only, with no generator.
  - `lora_enabled` boolean, required — Whether the resource hosts LoRA sessions or a full-weight session
  - `created_at` string, date-time, required — Timestamp when the model resource was created
  - `updated_at` string, date-time, required — Timestamp when the model resource was last updated
  - `optimizer_config` RLOptimizerConfig, required — Optimizer configuration
    - `adamw` RLAdamWOptimizerConfig — AdamW optimizer configuration
    - `muon` RLMuonOptimizerConfig — Advanced configuration for the Muon optimizer.
      - `scaling_strategy` 'MUON_SCALING_STRATEGY_UNSPECIFIED' | 'MUON_SCALING_STRATEGY_MATCH_ADAMW' | 'MUON_SCALING_STRATEGY_ORIGINAL'
  - `created_by` string, required — ID of the user who created the model resource

## Other responses

- `default` — An unexpected error response.

---

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