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>"
}
]
}Models
List distinct evaluation-issue (category, subcategory) pairs for a model
Returns the distinct (category, subcategory) pairs observed across all evaluation issues attached to runs of this model in the caller’s organization. Sorted alphabetically. Used by the Requests-tab filter dropdowns on models/:slug?tab=requests.
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
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
Response
Successful Response
List response wrapper — mirrors the {items: [...]} shape used by collection routes.
Distinct (category, subcategory) pairs sorted alphabetically.
Show child attributes
Show child attributes
⌘I