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

# Get WebRTC Connection By Name

> Retrieve a specific WebRTC connection by its name within a product.

## Returns

Returns a [WebRTC Connection](/concepts/product/webrtc-connection) object for the given product and name. The object exposes a `has_api_key` boolean, not the stored API key.

## Example

```python theme={"system"}
web_rtc_connection = galtea.web_rtc_connections.get_by_name(
    name="production-voice-agent-" + run_identifier,
    product_id=product_id,
)
```

## Parameters

<ResponseField name="name" type="string" required>
  Name of the WebRTC connection to retrieve.
</ResponseField>

<ResponseField name="product_id" type="string" required>
  ID of the product the connection belongs to.
</ResponseField>
