> 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.

# Get local runner job

GET http://localhost:5173/api/v1/private/local-runners/jobs/{jobId}

Get a single local runner job's status and results

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

## Servers

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

## Request

### Path parameters

- `jobId` (string, required)

## Response

### 200

Job details

- `id` (string, optional)
- `runner_id` (string, optional)
- `agent_name` (string, optional)
- `status` (enum, optional)
  - Allowed values: `pending`, `running`, `completed`, `failed`, `cancelled`
- `inputs` (object, optional)
- `result` (object, optional)
- `error` (string, optional)
- `project_id` (string, optional)
- `trace_id` (string, optional)
- `prompt_masks` (map from string to string, optional) — Mask overlays to apply during agent execution, keyed by prompt id.
- `blueprint_name` (string, optional)
- `metadata` (object, optional)
  - `dataset_id` (string, optional)
  - `dataset_version_id` (string, optional)
  - `dataset_item_version_id` (string, optional)
  - `dataset_item_id` (string, optional)
- `timeout` (integer, optional)
- `created_at` (datetime, optional)
- `started_at` (datetime, optional)
- `completed_at` (datetime, optional)
- `mask_id` (string, optional, deprecated) — Deprecated. Use prompt_masks to read one or more mask overlays keyed by prompt id.

## Errors

### 404 Not Found Error

Not found

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

## Examples

**Response**

```json
{
  "id": "string",
  "runner_id": "string",
  "agent_name": "string",
  "status": "pending",
  "inputs": {},
  "result": {},
  "error": "string",
  "project_id": "string",
  "trace_id": "string",
  "prompt_masks": {},
  "blueprint_name": "string",
  "metadata": {
    "dataset_id": "string",
    "dataset_version_id": "string",
    "dataset_item_version_id": "string",
    "dataset_item_id": "string"
  },
  "timeout": 1,
  "created_at": "2024-01-15T09:30:00Z",
  "started_at": "2024-01-15T09:30:00Z",
  "completed_at": "2024-01-15T09:30:00Z",
  "mask_id": "string"
}
```

**SDK Code**

```python
import requests

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

response = requests.get(url)

print(response.json())
```

```javascript
const url = 'http://localhost:5173/api/v1/private/local-runners/jobs/jobId';
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/jobs/jobId"

	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/jobs/jobId")

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/jobs/jobId")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

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

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

```csharp
using RestSharp;

var client = new RestClient("http://localhost:5173/api/v1/private/local-runners/jobs/jobId");
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/jobs/jobId")! 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()
```