---
title: "List Connections"
method: GET
path: "/api/v0/connections"
tags: ["connections > connections"]
---

# List Connections

`GET /api/v0/connections`

List all connections with optional filtering

## Query parameters

- `status` 'pending' | 'ready' | 'error' — The status of a connection
- `connection_type` 'https_basic' | 'https_bearer' | 'aws_iam_role' — The type of connection
- `offset` integer
- `limit` integer

## Request body

- string[], nullable

## Response `200`

Successful Response

- ConnectionsListConnectionsResponse
  - `meta` ConnectionsPagedMetaResponse, required — Metadata about the paginated response
    - `page` ConnectionsPagedPageDetailsResponse, required — Pagination metadata
      - `current_page` integer, required — Current page number
      - `limit` integer, required — Number of items returned in the list response
      - `offset` integer, required — Starting index returned for the list response
    - `links` ConnectionsPagedLinksDetailsResponse, required — Pagination metadata
      - `current` string, required — The current page link
      - `previous` string, nullable, required — The previous page, if applicable
      - `next` string, nullable, required — The next page link, if applicable
  - `data` ConnectionsGetConnectionResponse[], required — The paginated data
    - `connection_id` string, uuid, required — The unique identifier for the connection
    - `name` string, required — The connection name
    - `description` string, nullable — The connection description
    - `type` 'https_basic' | 'https_bearer' | 'aws_iam_role', required — The type of connection
    - `status` 'pending' | 'ready' | 'error', required — The status of a connection
    - `config` union, required — The connection configuration
      - ConnectionsHTTPSBasicAuthConfig
        - `hostname` string, required — The hostname to connect to
        - `username` string, required — The username for authentication
        - `password` string, required — The password for authentication
      - ConnectionsHTTPSBearerAuthConfig
        - `hostname` string, required — The hostname to connect to
        - `bearer_token` string, required — The bearer token for authentication
      - ConnectionsAWSIAMRoleConfig
        - `iam_role_arn` string, required — The ARN of the IAM role to assume
        - `scope` 's3' | 'bedrock' — The scope of permissions for an AWS IAM role connection
        - `bucket_name` string, nullable — The S3 bucket name associated with this connection
        - `session_ttl_seconds` integer — Session duration in seconds (60-3600)
    - `created_dt` string, date-time, required — When the connection was created
    - `updated_dt` string, date-time, required — When the connection was last updated

## Other responses

- `422` — Validation Error

## Changes

- **2026-09-17** `23dbda5f105c` — 1 breaking, 1 warning, 2 info
  - added `#/components/schemas/connections_HTTPSBasicAuthConfig, #/components/schemas/connections_HTTPSBearerAuthConfig, #/components/schemas/connections_AWSIAMRoleConfig` to the `data/items/config` response property `oneOf` list for the response status `200`
  - deleted the `header` request parameter `Authorization`
  - the endpoint scheme security `HTTPBearer` was added to the API
  - removed `#/components/schemas/connections:HTTPSBasicAuthConfig, #/components/schemas/connections:HTTPSBearerAuthConfig, #/components/schemas/connections:AWSIAMRoleConfig` from the `data/items/config` response property `oneOf` list for the response status `200`
- **2026-09-12** `3683abf6922b` — 1 info
  - api operation id `list-connections-api-v-0-connections-get` removed and replaced with `connections_connections_list_connections_api_v0_connections_get`
- …earlier changes not shown

[Full history](https://skmtc.dev/coactive/apis/api-reference/changes/api/v0/connections/get.md)

---

[API](https://skmtc.dev/coactive/apis/api-reference.md) · [All operations](https://skmtc.dev/coactive/apis/api-reference/llms.txt) · [OpenAPI document](https://skmtc.dev/coactive/apis/api-reference/revisions/23dbda5f105c?raw)
