---
title: "Get all connectors for a data source"
method: GET
path: "/v1/data_sources/{data_source_id}/connectors"
tags: ["data_sources", "data_sources"]
---

# Get all connectors for a data source

`GET /v1/data_sources/{data_source_id}/connectors`

Get all connectors for a data source.

Args:
    data_source_id: The ID of the data source to get connectors for.
    pagination: The pagination options.

Returns:
    The list of connectors.

## Path parameters

- `data_source_id` string, uuid, required — The ID of the data source to get connectors for

## Query parameters

- `limit` integer — Maximum number of items to return per page (1-100)
- `after` string, nullable — Cursor for forward pagination - get items after this position. Use last_cursor from previous response.
- `before` string, nullable — Cursor for backward pagination - get items before this position. Use first_cursor from previous response.
- `include_total` boolean — Whether to include total count in response (expensive operation)

## Response `200`

The list of connectors

- ConnectorListResponse — A list of connectors with pagination.
  - `pagination` CursorPaginationResponse, required — Response model for cursor-based pagination.
    - `has_more` boolean, required — Contextual direction-aware flag: True if more items exist in the requested pagination direction. For 'after': more items after this page. For 'before': more items before this page.
    - `first_cursor` string, nullable, required — Cursor of the first item in this page. Use for backward pagination. None if page is empty.
    - `last_cursor` string, nullable, required — Cursor of the last item in this page. Use for forward pagination. None if page is empty.
    - `total` integer, nullable — Total number of items available across all pages. Only included when include_total=true was requested. Expensive operation - use sparingly.
  - `data` DataSourceConnector[], required — The list of connectors
    - `id` string, required — The ID of the connector
    - `created_at` string, date-time, required — The creation time of the connector
    - `updated_at` string, date-time, required — The last update time of the connector
    - `store_id` string, required — The ID of the store
    - `data_source_id` string, required — The ID of the data source
    - `name` string — The name of the connector
    - `metadata` unknown, required
    - `polling_interval` string, duration, required — The polling interval of the connector
    - `started_at` string, date-time, nullable, required — The start time of the connector
    - `finished_at` string, date-time, nullable, required — The finish time of the connector
    - `last_synced_at` string, date-time, nullable, required — The last sync time of the connector
    - `status` 'idle' | 'pending' | 'in_progress' | 'cancelled' | 'completed' | 'failed', required
    - `error` object, nullable, required — The sync error of the connector
    - `object` 'data_source.connector' — The type of the object
  - `object` 'list' — The object type of the response

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/mixedbread/apis/mxbai-omni.md) · [All operations](https://skmtc.dev/mixedbread/apis/mxbai-omni/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/mixedbread/mxbai-omni/revisions/eb12b76f5763/schema)
