provider evaluations GET /api/projects/{project_id}/evaluations/
@utdk/posthog /api/projects/{project_id}/evaluations/
evaluations_list
enabled query
Filter by enabled status
boolean
evaluation_type query
Filter by evaluation type * `llm_judge` - LLM as a judge * `hog` - Hog * `sentiment` - Sentiment analysis
enum: hog, llm_judge, sentiment
id__in query
Multiple values may be separated by commas.
array
limit query
Number of results to return per page.
integer
offset query
The initial index from which to return the results.
integer
order_by query
Ordering * `created_at` - Created At * `-created_at` - Created At (descending) * `updated_at` - Updated At * `-updated_at` - Updated At (descending) * `name` - Name * `-name` - Name (descending)
array
project_id path required
Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
string
search query
Search in name or description
string

Try it

Authentication
Configure credentials for PostHog API
evaluationsList
GET/api/projects/{project_id}/evaluations/

Parameters

required

Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.

Filter by enabled status

Filter by evaluation type * `llm_judge` - LLM as a judge * `hog` - Hog * `sentiment` - Sentiment analysis

Multiple values may be separated by commas.

Number of results to return per page.

The initial index from which to return the results.

Ordering * `created_at` - Created At * `-created_at` - Created At (descending) * `updated_at` - Updated At * `-updated_at` - Updated At (descending) * `name` - Name * `-name` - Name (descending)

Search in name or description

Configure credentials above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import posthog from '@utdk/posthog';

await posthog.evaluationsList()