Skip to main content
GET
/
v1
/
models
/
{owner}
/
{slug}
/
evaluation-issue-categories
List distinct evaluation-issue (category, subcategory) pairs for a model
curl --request GET \
  --url https://api.runflow.io/v1/models/{owner}/{slug}/evaluation-issue-categories \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "category": "<string>",
      "subcategory": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.runflow.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Organization-Id
string | null

Path Parameters

owner
string
required
slug
string
required

Response

Successful Response

List response wrapper — mirrors the {items: [...]} shape used by collection routes.

items
EvaluationIssueCategoryItem · object[]
required

Distinct (category, subcategory) pairs sorted alphabetically.