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
        • GETGet local runner job logs
        • POSTAppend local runner job logs
        • POSTCancel local runner job
        • POSTSubmit bridge command
        • POSTCreate local runner job
        • GETGet local runner
        • DELDisconnect local runner
        • GETGet bridge command
        • GETGet local runner job
        • POSTLocal runner heartbeat
        • GETList local runner jobs
        • GETList local runners
        • POSTPoll next bridge commands
        • POSTNext local runner job
        • PATCHPatch runner checklist
        • PUTRegister local runner agents
        • POSTReport bridge command result
        • POSTReport local runner job result
LogoLogo
Copy to LLMGithubGo to App
Rest APIAPI ReferenceRunners

List local runner jobs

GET
/v1/private/local-runners/:runnerId/jobs
GET
/api/v1/private/local-runners/:runnerId/jobs
$curl http://localhost:5173/api/v1/private/local-runners/runnerId/jobs
1{
2 "page": 1,
3 "size": 1,
4 "total": 1,
5 "content": [
6 {
7 "id": "string",
8 "runner_id": "string",
9 "agent_name": "string",
10 "status": "pending",
11 "inputs": {},
12 "result": {},
13 "error": "string",
14 "project_id": "string",
15 "trace_id": "string",
16 "prompt_masks": {},
17 "blueprint_name": "string",
18 "metadata": {
19 "dataset_id": "string",
20 "dataset_version_id": "string",
21 "dataset_item_version_id": "string",
22 "dataset_item_id": "string"
23 },
24 "timeout": 1,
25 "created_at": "2024-01-15T09:30:00Z",
26 "started_at": "2024-01-15T09:30:00Z",
27 "completed_at": "2024-01-15T09:30:00Z",
28 "mask_id": "string"
29 }
30 ]
31}
List jobs for a local runner
Was this page helpful?
Previous

List local runners

Next
Built with

Path parameters

runnerIdstringRequiredformat: "uuid"

Query parameters

project_idstringOptionalformat: "uuid"
pageintegerOptional>=0Defaults to 0
sizeintegerOptional>=1Defaults to 25

Response

Jobs list
pageinteger
sizeinteger
totallong
contentlist of objects

Errors

404
Not Found Error