RL
Download checkpoint
Returns presigned URLs for downloading a checkpoint's model files. Only inference checkpoints support downloading.
get/rl/checkpoints/{id}/download
Path parameters
idstring required
ID of the checkpoint
Query parameters
variant'CHECKPOINT_VARIANT_UNSPECIFIED' | 'CHECKPOINT_VARIANT_MERGED' | 'CHECKPOINT_VARIANT_ADAPTER' required
Checkpoint variant: merged (full model) or adapter (LoRA weights only)
Response
Checkpoint download URLs
Example response
{
"data": [
{
"filename": "model-00001-of-00002.safetensors",
"url": "https://..."
}
]
}