> ## Documentation Index
> Fetch the complete documentation index at: https://docs.galtea.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieving Test Case

> Retrieve a specific test case by its ID.

## Returns

Returns a [TestCase](/concepts/product/test/case) object for the given test case ID.

## Example

```python theme={"system"}
test_case = galtea.test_cases.get(test_case_id=test_case_id)
```

## Parameters

<ResponseField name="test_case_id" type="string" required>
  The ID of the test case you want to retrieve.
</ResponseField>
