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

## Headers

- `Authorization` string, required

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

---

[API](https://skmtc.dev/coactive/apis/api-reference.md) · [All operations](https://skmtc.dev/coactive/apis/api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/coactive/api-reference/revisions/1223758be9ba/schema)
