Skip to main content
Client Get Validation Run
curl --request GET \
  --url https://agents-api.kolena.com/api/v1/client/agents/{agent_id}/ground_truths/{ground_truth_id}/validations/{validation_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "ground_truth_id": 123,
  "ground_truth_version": 123,
  "status": "running",
  "results": {
    "score": 123
  }
}
Rate Limit: This endpoint is limited to requests per minute per user.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>. The <token> represents your API key, which must be acquired from the Kolena platform.

Path Parameters

agent_id
integer
required
ground_truth_id
integer
required
validation_id
integer
required

Response

Successful Response

id
integer
required

The unique ID of the validation.

ground_truth_id
integer
required

The ID of the Ground Truth this validation ran against.

ground_truth_version
integer
required

The version of the Ground Truth this validation ran against.

status
enum<string>
required

The current status of the validation.

Available options:
running,
success,
failed
results
ClientValidationResults · object

The results of the validation, populated once the validation has completed successfully.