Get task
Returns a single task by its ID.
Authorizations
Most Arize AI endpoints require authentication. For those endpoints that require authentication, include your API key in the request header using the format
Path Parameters
The unique task identifier (base64) A universally unique identifier (base64-encoded opaque string).
"RW50aXR5OjEyMzQ1"
Response
Returns a single task object
A task is a typed, configurable unit of work that ties one or more evaluators
to a data source (project or dataset). run_experiment tasks additionally
carry a run_configuration that defines the LLM or evaluator settings for
each triggered run.
The unique identifier for the task
The name of the task
The task type.
- template_evaluation - An LLM template-based evaluation task.
- code_evaluation - A code-based evaluation task.
- run_experiment - A task that runs experiments.
template_evaluation, code_evaluation, run_experiment Whether the task runs continuously on incoming data.
Task-level query filter applied to all data.
The evaluators attached to this task. Empty for run_experiment tasks.
Experiment identifiers (base64) for dataset-based tasks.
When the task was last run.
When the task was created.
When the task was last updated.
The unique identifier for the user who created the task.
The project identifier (base64). Present for project-based tasks.
The dataset identifier (base64). Present for dataset-based tasks.
Sampling rate between 0 and 1. Only applicable for project-based tasks.
0 <= x <= 1The run configuration for a run_experiment task. Present only when
type is run_experiment. Null for all other task types.
- Option 1
- Option 2