> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://www.comet.com/docs/opik/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://www.comet.com/docs/opik/_mcp/server.

# List local runners

GET http://localhost:5173/api/v1/private/local-runners

List local runners owned by the current user in the workspace

Reference: https://www.comet.com/docs/opik/reference/rest-api/runners/list-runners

## Servers

- `http://localhost:5173/api` (Local server, default)
- `https://www.comet.com/opik/api` (Opik Cloud)

## Request

### Query parameters

- `project_id` (string, required)
- `status` (enum, optional)
  - Allowed values: `pairing`, `connected`, `disconnected`
- `page` (integer, optional, default: 0)
- `size` (integer, optional, default: 25)

## Response

### 200

Runners list

- `page` (integer, optional)
- `size` (integer, optional)
- `total` (long, optional)
- `content` (list of object, optional)
  - `id` (string, optional)
  - `name` (string, optional)
  - `project_id` (string, optional)
  - `status` (enum, optional)
    - Allowed values: `pairing`, `connected`, `disconnected`
  - `connected_at` (datetime, optional)
  - `agents` (list of object, optional)
    - `name` (string, optional)
    - `description` (string, optional)
    - `language` (string, optional)
    - `executable` (string, optional)
    - `source_file` (string, optional)
    - `params` (list of object, optional)
      - `name` (string, required)
      - `type` (string, required)
      - `presence` (enum, optional)
        - Allowed values: `required`, `optional`
    - `timeout` (integer, optional)
  - `capabilities` (list of string, optional)
  - `checklist` (object, optional)
  - `type` (enum, optional)
    - Allowed values: `connect`, `endpoint`

## Errors

### 404 Not Found Error

Not found

- `code` (integer, optional)
- `message` (string, optional)
- `details` (string, optional)

## Examples

**Response**

```json
{
  "page": 1,
  "size": 1,
  "total": 1,
  "content": [
    {
      "id": "string",
      "name": "string",
      "project_id": "string",
      "status": "pairing",
      "connected_at": "2024-01-15T09:30:00Z",
      "agents": [
        {
          "name": "string",
          "description": "string",
          "language": "string",
          "executable": "string",
          "source_file": "string",
          "params": [
            {
              "name": "string",
              "type": "string",
              "presence": "required"
            }
          ],
          "timeout": 1
        }
      ],
      "capabilities": [
        "string"
      ],
      "checklist": {},
      "type": "connect"
    }
  ]
}
```

**SDK Code**

```python
import requests

url = "http://localhost:5173/api/v1/private/local-runners"

querystring = {"project_id":"project_id"}

response = requests.get(url, params=querystring)

print(response.json())
```

```javascript
const url = 'http://localhost:5173/api/v1/private/local-runners?project_id=project_id';
const options = {method: 'GET'};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "http://localhost:5173/api/v1/private/local-runners?project_id=project_id"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("http://localhost:5173/api/v1/private/local-runners?project_id=project_id")

http = Net::HTTP.new(url.host, url.port)

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("http://localhost:5173/api/v1/private/local-runners?project_id=project_id")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'http://localhost:5173/api/v1/private/local-runners?project_id=project_id');

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("http://localhost:5173/api/v1/private/local-runners?project_id=project_id");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let request = NSMutableURLRequest(url: NSURL(string: "http://localhost:5173/api/v1/private/local-runners?project_id=project_id")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```