curl --request GET \
--url 'https://api.nsr.stateset.com/api/v1/model/checkpoints' \
--header 'X-API-Key: YOUR_API_KEY'
{
"checkpoints": [
{
"config": {
"attention_heads": null,
"dropout": null,
"embedding_dim": null,
"features": null,
"hidden_dims": null,
"max_sequence_length": null
},
"created_at": 1,
"description": "string",
"id": "string",
"metrics": {
"accuracy": null,
"epochs": null,
"f1_score": null,
"train_loss": null,
"training_time_secs": null,
"val_loss": null
},
"name": "string",
"tags": [],
"version": "string"
}
],
"total": 1
}
List model checkpoints
Required scope: read
GET
/
api
/
v1
/
model
/
checkpoints
curl --request GET \
--url 'https://api.nsr.stateset.com/api/v1/model/checkpoints' \
--header 'X-API-Key: YOUR_API_KEY'
{
"checkpoints": [
{
"config": {
"attention_heads": null,
"dropout": null,
"embedding_dim": null,
"features": null,
"hidden_dims": null,
"max_sequence_length": null
},
"created_at": 1,
"description": "string",
"id": "string",
"metrics": {
"accuracy": null,
"epochs": null,
"f1_score": null,
"train_loss": null,
"training_time_secs": null,
"val_loss": null
},
"name": "string",
"tags": [],
"version": "string"
}
],
"total": 1
}
Required scope:
read
Response
ListCheckpointsResponse
ModelCheckpoint[]
required
Available checkpoints
Show ModelCheckpoint
Show ModelCheckpoint
ModelConfig
required
integer (int64)
required
Creation timestamp (Unix ms)
string
Optional description
string
required
Unique checkpoint identifier
ModelMetrics
required
string
required
Human-readable name
string[]
Tags for organization
string
required
Version string (semver)
integer
required
Total count
Status codes
| Code | Meaning |
|---|---|
200 | List of checkpoints |
401 | Unauthorized — missing or invalid credentials |
403 | Forbidden — the key/token lacks the required scope |
429 | Rate limited — see Retry-After / X-RateLimit-Reset |
curl --request GET \
--url 'https://api.nsr.stateset.com/api/v1/model/checkpoints' \
--header 'X-API-Key: YOUR_API_KEY'
{
"checkpoints": [
{
"config": {
"attention_heads": null,
"dropout": null,
"embedding_dim": null,
"features": null,
"hidden_dims": null,
"max_sequence_length": null
},
"created_at": 1,
"description": "string",
"id": "string",
"metrics": {
"accuracy": null,
"epochs": null,
"f1_score": null,
"train_loss": null,
"training_time_secs": null,
"val_loss": null
},
"name": "string",
"tags": [],
"version": "string"
}
],
"total": 1
}