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

# List Endpoint Connections

> List endpoint connections with optional filters.

## Returns

Returns a list of [Endpoint Connection](/concepts/product/endpoint-connection) objects matching the given filters.

## Example

```python theme={"system"}
endpoint_connections = galtea.endpoint_connections.list(
    product_ids=[product_id],
    sort_by_created_at="desc",
    limit=10,
)
```

## Parameters

<ResponseField name="product_ids" type="list[string]" optional>
  Filter by product IDs.
</ResponseField>

<ResponseField name="names" type="list[string]" optional>
  Filter by exact endpoint connection names.
</ResponseField>

<ResponseField name="name" type="string" optional>
  Filter by partial name match.
</ResponseField>

<ResponseField name="url" type="string" optional>
  Filter by partial URL match.
</ResponseField>

<ResponseField name="types" type="list[string]" optional>
  Filter by endpoint connection types. Valid values: `INITIALIZATION`, `CONVERSATION`, `FINALIZATION`.
</ResponseField>

<ResponseField name="http_methods" type="list[string]" optional>
  Filter by HTTP methods. Valid values: `GET`, `POST`, `PUT`, `PATCH`, `DELETE`.
</ResponseField>

<ResponseField name="auth_types" type="list[string]" optional>
  Filter by authentication types. Valid values: `NONE`, `BEARER`, `API_KEY`, `BASIC`.
</ResponseField>

<ResponseField name="from_created_at" type="str | int" optional>
  Filter connections created at or after this timestamp. Accepts ISO 8601 string (e.g., `'2024-01-01T00:00:00Z'`) or Unix timestamp in seconds.
</ResponseField>

<ResponseField name="to_created_at" type="str | int" optional>
  Filter connections created at or before this timestamp. Accepts ISO 8601 string (e.g., `'2024-12-31T23:59:59Z'`) or Unix timestamp in seconds.
</ResponseField>

<ResponseField name="sort_by_created_at" type="string" optional>
  Sort by creation date. Valid values: `asc`, `desc`.
</ResponseField>

<ResponseField name="offset" type="int" optional>
  Number of results to skip before starting to collect. Use for pagination.
</ResponseField>

<ResponseField name="limit" type="int" optional>
  Maximum number of results to return in a single request.
</ResponseField>
