For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Copy to LLMGithubGo to App
DocumentationIntegrationsBuilding Self-Improving AgentsSelf-hosting OpikSDK & API reference
DocumentationIntegrationsBuilding Self-Improving AgentsSelf-hosting OpikSDK & API reference
    • Overview
  • Python SDK
    • Reference
    • REST API Client
  • Typescript SDK
    • Overview
    • Opik TS
    • Prompts
    • Opik Query Language (OQL)
  • Rest API
    • Overview
        • GETFind project Evaluators
        • POSTCreate automation rule evaluator
        • POSTDelete automation rule evaluators
        • GETGet automation rule evaluator by id
        • PATCHUpdate Automation Rule Evaluator by id
        • GETGet automation rule evaluator logs by id
LogoLogo
Copy to LLMGithubGo to App
Rest APIAPI ReferenceAutomation Rule Evaluators

Get automation rule evaluator logs by id

GET
/v1/private/automations/evaluators/:id/logs
GET
/api/v1/private/automations/evaluators/:id/logs
$curl http://localhost:5173/api/v1/private/automations/evaluators/id/logs
200Retrieved
1{
2 "content": [
3 {
4 "timestamp": "2024-01-15T09:30:00Z",
5 "rule_id": "string",
6 "level": "INFO",
7 "message": "string",
8 "markers": {}
9 }
10 ],
11 "page": 1,
12 "size": 1,
13 "total": 1
14}
Get automation rule evaluator logs by id
Was this page helpful?
Previous

Create chat completions

Next
Built with

Path parameters

idstringRequiredformat: "uuid"

Query parameters

sizeintegerOptional>=1Defaults to 1000

Response

Automation rule evaluator logs resource
contentlist of objects
pageinteger
sizeinteger
totallong