List Evaluation Groups

Retrieves a paginated list of evaluation groups for the user's workspace, including sample groups.

List Evaluation Groups

Retrieves a paginated list of evaluation groups for the user’s workspace, including sample groups.

GET https://api.futureagi.com/model-hub/eval-groups/
Bearer
name
page_size
page_number
          Click "Try It" to send a request
        

Authentication

This endpoint requires authentication. Include your API key in the Authorization header:

Authorization: Bearer YOUR_API_KEY

Parameters

Query Parameters

ParameterTypeRequiredDescription
namestringNoFilter evaluation groups by name (case-insensitive search).
page_sizeintegerNoThe number of results to return per page.
page_numberintegerNoThe page number to retrieve.

Responses

200

Successfully retrieved the list of evaluation groups.

  • data: array of any
  • total_count: integer Total number of evaluation groups matching the criteria.
  • total_pages: integer Total number of pages.

401

Unauthorized. Authentication credentials were not provided or are invalid.

500

Internal Server Error. An unexpected error occurred.

Code Examples

cURL

curl -X GET "https://api.futureagi.com/model-hub/eval-groups/" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Python

import requests

url = "https://api.futureagi.com/model-hub/eval-groups/"
headers = {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
}

response = requests.get(url, headers=headers)
print(response.json())

JavaScript

const response = await fetch("https://api.futureagi.com/model-hub/eval-groups/", {
  method: "GET",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
  },
});

const data = await response.json();
console.log(data);
Was this page helpful?

Questions & Discussion