Skip to main content
GET
/
model-hub
/
get-eval-logs-details
/
Get Evaluation Log Details
curl --request GET \
  --url https://api.futureagi.com/model-hub/get-eval-logs-details/ \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --header 'X-Secret-Key: <api-key>' \
  --data '{
  "filters": [
    {
      "filter_config": {
        "filter_type": "<string>",
        "filter_value": [
          "<any>"
        ]
      }
    }
  ],
  "sort": [
    {
      "column_id": "<string>",
      "type": "ascending"
    }
  ]
}'
{
  "table": [
    {}
  ],
  "columnConfig": [
    {
      "id": "<string>",
      "name": "<string>"
    }
  ],
  "metadata": {
    "total_rows": 123,
    "total_pages": 123
  }
}

Authorizations

X-Api-Key
string
header
required

API Key for authentication. Click here to access API Key

X-Secret-Key
string
header
required

Secret Key for authentication. Click here to access Secret Key

Query Parameters

eval_template_id
string<uuid>
required

The UUID of the evaluation template to retrieve logs for.

page_size
integer
default:10

The number of log entries to return per page.

current_page_index
integer
default:0

The index of the page to retrieve.

source
enum<string>
default:logs

The source of the logs to filter by.

Available options:
logs,
feedback,
eval_playground

A search term to filter log data across all columns.

Body

application/json

Optional filtering and sorting configurations.

filters
object[]

A list of filters to apply to the log data.

sort
object[]

A list of sorting configurations to apply.

Response

Successfully retrieved the evaluation log details.

table
object[]
columnConfig
object[]
metadata
object