Retrieve a completed raw result while it remains available at the origin.
curl --request GET \
--url http://localhost:3001/v1/training/operations/{operation_id}/result \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:3001/v1/training/operations/{operation_id}/result"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:3001/v1/training/operations/{operation_id}/result', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"operation_id": "<string>",
"result": {}
}{
"error": {
"code": "<string>",
"message": "<string>"
},
"request_id": "<string>",
"funding_source": "platform"
}unified-training
Retrieve a completed raw result while it remains available at the origin.
This endpoint is for transient token, logprob, and loss payloads that are intentionally not persisted in Whitney’s operations store. Tinker results are actor-affine; a request on another owner fails closed.
GET
/
v1
/
training
/
operations
/
{operation_id}
/
result
Retrieve a completed raw result while it remains available at the origin.
curl --request GET \
--url http://localhost:3001/v1/training/operations/{operation_id}/result \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:3001/v1/training/operations/{operation_id}/result"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:3001/v1/training/operations/{operation_id}/result', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"operation_id": "<string>",
"result": {}
}{
"error": {
"code": "<string>",
"message": "<string>"
},
"request_id": "<string>",
"funding_source": "platform"
}Authorizations
Whitney-issued API key. No organization-selection header is accepted.
Path Parameters
Pattern:
^wto_[0-9a-f]{32}$