This endpoint is in preview and may be modified or removed at any time.
To use this endpoint, add preview=true to the request query parameters.
Retrieve raw time-series data for a single series in JSON format. Results are paginated with a default page size of 200 and a maximum of 1000.
Third-party applications using this endpoint via OAuth2 must request the following operation scope: api:models-read.
stringThe Resource Identifier (RID) of a Model.
stringThe Resource Identifier (RID) of an Experiment.
stringThe name of a series (metrics tracked over time).
integeroptionalMaximum number of values to return per page. Default is 200, maximum is 1000.
integeroptionalNumber of values to skip from the beginning. Defaults to 0.
booleanoptionalEnables the use of preview functionality.
unionA series of values logged over time.
objectoptionalA series of double values.
1
2
3
curl \
\t-H "Authorization: Bearer $TOKEN" \
"https://$HOSTNAME/api/v2/models/ri.models.main.model.f351c142-0e4c-4b12-adc2-6e1539737ae9/experiments/ri.models.main.experiment.abc123/series/loss/json?preview=true"1
2
3
4
5
6
7
8
9
10
{
"type": "doubleV1",
"series": [
{
"value": 0.42,
"timestamp": 1715212800000,
"step": 1
}
]
}| Error Name | ||
|---|---|---|
Experiment | Error Code | NOT_FOUND |
| Status Code | 404 | |
| Description | The requested series was not found in the experiment. | |
| Parameters | modelRid, experimentRid, seriesName | |
Model | Error Code | NOT_FOUND |
| Status Code | 404 | |
| Description | The requested experiment was not found or the user lacks permission to access it. | |
| Parameters | modelRid, experimentRid | |
Json | Error Code | PERMISSION_DENIED |
| Status Code | 403 | |
| Description | Could not json the ExperimentSeries. | |
| Parameters | experimentSeriesName, experimentRid, modelRid | |
See Errors for a general overview of errors in the platform.