List Evaluation Jobs#

To list all evaluation jobs, send a GET request to the jobs endpoint, as shown in the following code. After you submit the request, a list of all the evaluation jobs is returned, with details for each job. To filter the jobs that the API returns, refer to Filter Jobs.


Options#

API#

curl -X "GET" "${EVALUATOR_SERVICE_URL}/v1/evaluation/jobs" \
  -H 'accept: application/json'
endpoint = f"{EVALUATOR_SERVICE_URL}/v1/evaluation/jobs"
response = requests.get(endpoint).json()
response