> For clean Markdown of any page, append `.md` to the page URL.
> For a complete documentation index, see https://docs.sarvam.ai/llms.txt.
> For full documentation content in one file, see https://docs.sarvam.ai/llms-full.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.sarvam.ai/_mcp/server.

# Get a run

GET https://apps.sarvam.ai/api/evals/v1/{org_id}/{workspace_id}/test-suites/{test_suite_id}/runs/{run_id}

The polling endpoint for a queued run. `status` is `created`, `running`, `completed` or `failed`; `completed_executions` against `total_executions` gives progress. Carries per-test-case pass counts but no transcripts -- read a test case's results for those.

Reference: https://docs.sarvam.ai/api-reference/tests/runs/get

## Request

### Path parameters

- `org_id` (string, required) — Organization ID
- `workspace_id` (string, required) — Workspace ID
- `test_suite_id` (string, required)
- `run_id` (string, required)

### Headers

- `X-API-Key` (string, required) — Your workspace API key.

## Response

### 200

Successful Response

- `run_id` (string, required)
- `test_suite_id` (string, required)
- `app_id` (string, required)
- `app_version` (integer, required)
- `scope` (enum, required)
  - Allowed values: `suite`, `test_case`
- `status` (string, required)
- `frequency` (integer, required)
- `total_executions` (integer, required) — Test cases multiplied by frequency.
- `completed_executions` (integer, required)
- `total_pass` (integer, required)
- `created_by` (object, required)
  - `type` (enum, required) — Whether a user or an API key performed the action.
    - Allowed values: `user`, `api_key`
  - `id` (string, required) — User identifier for `user`; the key prefix for `api_key`.
- `created_at` (datetime, required)
- `run_name` (string, optional, nullable)
- `test_cases` (list of object, optional, default: [])
  - `test_case_id` (string, required)
  - `test_case_name` (string, required)
  - `total_executions` (integer, required) — Executions of this test case in the run.
  - `passed` (integer, required) — Executions where every expected behavior passed.

## Errors

### 401 Unauthorized Error

No Bearer token or X-API-Key was supplied, or it is invalid.

- `error` (object, required) — Details of the error that occurred.
  - `code` (string, required) — A service-specific error code.
  - `message` (string, required) — A human-readable description of the error.

### 403 Forbidden Error

The credential is not valid for this org or workspace.

- `error` (object, required) — Details of the error that occurred.
  - `code` (string, required) — A service-specific error code.
  - `message` (string, required) — A human-readable description of the error.

### 404 Not Found Error

No such resource in this org and workspace.

- `error` (object, required) — Details of the error that occurred.
  - `code` (string, required) — A service-specific error code.
  - `message` (string, required) — A human-readable description of the error.

### 422 Unprocessable Entity Error

Validation Error

- `detail` (list of object, optional)
  - `loc` (list of string or integer, required)
  - `msg` (string, required)
  - `type` (string, required)

### 429 Too Many Requests Error

Rate limit exceeded for this caller.

- `error` (object, required) — Details of the error that occurred.
  - `code` (string, required) — A service-specific error code.
  - `message` (string, required) — A human-readable description of the error.

## Examples

### Still executing

**Response**

```json
{
  "run_id": "01K5T9C4XR7NB2QJ5WD8HKTM0E",
  "test_suite_id": "01K5T8A2MZQ4VE6XCJ0RDBHW7N",
  "app_id": "clinic-front-desk",
  "app_version": 4,
  "scope": "suite",
  "status": "running",
  "frequency": 2,
  "total_executions": 16,
  "completed_executions": 5,
  "total_pass": 4,
  "created_by": {
    "type": "api_key",
    "id": "sk_live_7f3ab1"
  },
  "created_at": "2026-09-16T05:01:12Z",
  "run_name": "Pre-release check, v4",
  "test_cases": [
    {
      "test_case_id": "01K5T8B7PS3KD9GM1FYX4VQCJ2",
      "test_case_name": "Caller reschedules to the weekend",
      "total_executions": 2,
      "passed": 2
    },
    {
      "test_case_id": "01K5T8C1JW9QA4XT6RZ0NVFD8H",
      "test_case_name": "Caller cancels without identifying themselves",
      "total_executions": 1,
      "passed": 0
    }
  ]
}
```

**SDK Code**

```python Still executing
import requests

url = "https://apps.sarvam.ai/api/evals/v1/org_id/workspace_id/test-suites/test_suite_id/runs/run_id"

headers = {"X-API-Key": "<your-api-key>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript Still executing
const url = 'https://apps.sarvam.ai/api/evals/v1/org_id/workspace_id/test-suites/test_suite_id/runs/run_id';
const options = {method: 'GET', headers: {'X-API-Key': '<your-api-key>'}};

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

```go Still executing
package main

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

func main() {

	url := "https://apps.sarvam.ai/api/evals/v1/org_id/workspace_id/test-suites/test_suite_id/runs/run_id"

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

	req.Header.Add("X-API-Key", "<your-api-key>")

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

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

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

}
```

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

url = URI("https://apps.sarvam.ai/api/evals/v1/org_id/workspace_id/test-suites/test_suite_id/runs/run_id")

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

request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<your-api-key>'

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

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

HttpResponse<String> response = Unirest.get("https://apps.sarvam.ai/api/evals/v1/org_id/workspace_id/test-suites/test_suite_id/runs/run_id")
  .header("X-API-Key", "<your-api-key>")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://apps.sarvam.ai/api/evals/v1/org_id/workspace_id/test-suites/test_suite_id/runs/run_id', [
  'headers' => [
    'X-API-Key' => '<your-api-key>',
  ],
]);

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

```csharp Still executing
using RestSharp;

var client = new RestClient("https://apps.sarvam.ai/api/evals/v1/org_id/workspace_id/test-suites/test_suite_id/runs/run_id");
var request = new RestRequest(Method.GET);
request.AddHeader("X-API-Key", "<your-api-key>");
IRestResponse response = client.Execute(request);
```

```swift Still executing
import Foundation

let headers = ["X-API-Key": "<your-api-key>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://apps.sarvam.ai/api/evals/v1/org_id/workspace_id/test-suites/test_suite_id/runs/run_id")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

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()
```

### Finished

**Response**

```json
{
  "run_id": "01K5T9C4XR7NB2QJ5WD8HKTM0E",
  "test_suite_id": "01K5T8A2MZQ4VE6XCJ0RDBHW7N",
  "app_id": "clinic-front-desk",
  "app_version": 4,
  "scope": "suite",
  "status": "completed",
  "frequency": 2,
  "total_executions": 16,
  "completed_executions": 16,
  "total_pass": 14,
  "created_by": {
    "type": "api_key",
    "id": "sk_live_7f3ab1"
  },
  "created_at": "2026-09-16T05:01:12Z",
  "run_name": "Pre-release check, v4",
  "test_cases": [
    {
      "test_case_id": "01K5T8B7PS3KD9GM1FYX4VQCJ2",
      "test_case_name": "Caller reschedules to the weekend",
      "total_executions": 2,
      "passed": 2
    },
    {
      "test_case_id": "01K5T8C1JW9QA4XT6RZ0NVFD8H",
      "test_case_name": "Caller cancels without identifying themselves",
      "total_executions": 2,
      "passed": 1
    }
  ]
}
```

**SDK Code**

```python Finished
import requests

url = "https://apps.sarvam.ai/api/evals/v1/org_id/workspace_id/test-suites/test_suite_id/runs/run_id"

headers = {"X-API-Key": "<your-api-key>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript Finished
const url = 'https://apps.sarvam.ai/api/evals/v1/org_id/workspace_id/test-suites/test_suite_id/runs/run_id';
const options = {method: 'GET', headers: {'X-API-Key': '<your-api-key>'}};

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

```go Finished
package main

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

func main() {

	url := "https://apps.sarvam.ai/api/evals/v1/org_id/workspace_id/test-suites/test_suite_id/runs/run_id"

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

	req.Header.Add("X-API-Key", "<your-api-key>")

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

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

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

}
```

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

url = URI("https://apps.sarvam.ai/api/evals/v1/org_id/workspace_id/test-suites/test_suite_id/runs/run_id")

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

request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<your-api-key>'

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

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

HttpResponse<String> response = Unirest.get("https://apps.sarvam.ai/api/evals/v1/org_id/workspace_id/test-suites/test_suite_id/runs/run_id")
  .header("X-API-Key", "<your-api-key>")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://apps.sarvam.ai/api/evals/v1/org_id/workspace_id/test-suites/test_suite_id/runs/run_id', [
  'headers' => [
    'X-API-Key' => '<your-api-key>',
  ],
]);

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

```csharp Finished
using RestSharp;

var client = new RestClient("https://apps.sarvam.ai/api/evals/v1/org_id/workspace_id/test-suites/test_suite_id/runs/run_id");
var request = new RestRequest(Method.GET);
request.AddHeader("X-API-Key", "<your-api-key>");
IRestResponse response = client.Execute(request);
```

```swift Finished
import Foundation

let headers = ["X-API-Key": "<your-api-key>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://apps.sarvam.ai/api/evals/v1/org_id/workspace_id/test-suites/test_suite_id/runs/run_id")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

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()
```