Skip to main content
GET
List connectors
Filter and sort on a related (included) object by nesting into the relationship — the same relationships you pass to include.
  • To-one relations nest directly: { "issuer": { "name": { "_eq": "Acme" } } }, and sort by a dot-path: "orderBy": { "field": "issuer.name", "direction": "asc" }.
  • To-many relations must be quantified with _some, _every, or _none: { "items": { "_some": { "quantity": { "_gt": 1 } } } }. They are not directly sortable (a to-many sort needs an aggregate proxy).
  • Composite composite_* columns are virtual — filter and sort on their underlying source fields, not on the composite.
Workspace row-level security applies at every hop, so a related-object filter never widens your tenant scope. Full operator set, deep-nesting rules, and pagination notes: Filtering & sorting. This resource’s related objects (the ones you can include) and how to filter or sort on each: Replace field_name with any field of the related object. See its object-reference page for the full field list. Filter by a to-one relation (and sort by it):
Filter by a to-many relation (quantified — bare nesting is invalid):

Headers

Authorization
string
required

Bearer token for authentication

Query Parameters

include
string

Comma-separated list of related resources to include. Available options: published_by, logo, category

created_at_from
string<date-time>

Filter connectors created from this date (ISO 8601 format)

created_at_to
string<date-time>

Filter connectors created until this date (ISO 8601 format)

updated_at_from
string<date-time>

Filter connectors updated from this date (ISO 8601 format)

updated_at_to
string<date-time>

Filter connectors updated until this date (ISO 8601 format)

workspace_id
string<uuid>

Filter by workspace ID that published the connector

published_by
string<uuid>

Filter by workspace that published the connector

category
enum<string>

Filter by connector category. See all available categories for complete list.

Available options:
database,
data_warehouse,
other
direction
enum<string>

Filter by data flow direction capability

Available options:
import,
export,
both
status
enum<string>

Filter by connector status

Available options:
active,
inactive,
pending,
deprecated
name
string

Filter by connector name (partial match, case-insensitive)

sort
enum<string>

Sort by field. Use '-' prefix for descending order (e.g., '-created_at' for newest first)

Available options:
created_at,
-created_at,
updated_at,
-updated_at,
name,
-name,
category,
-category
limit
integer
default:25

Number of results to return per page

Required range: 1 <= x <= 100
page
integer
default:1

Page number for pagination

Required range: x >= 1

Response

Connectors retrieved successfully

data
object[]
meta
object