airbyte_list_destinations
List destination connectors in Airbyte workspaces. View names, IDs, types, and creation dates to audit or discover configured data targets.
Instructions
List destination connectors configured in Airbyte.
Destinations represent the data targets (warehouses, databases, lakes, SaaS tools, etc.) that Airbyte writes to. Each destination is linked to a workspace and can receive data from one or more sources via connections.
When to Use: - Discover which destination connectors are set up. - Find a destination's UUID to inspect its configuration or look up related connections. - Audit destinations across one or more workspaces.
When NOT to Use: - If you already have a destination ID, use airbyte_get_destination for full details. - To see what data flows into a destination, look at connections (airbyte_list_connections) or jobs (airbyte_list_jobs).
Returns: Paginated list of destinations. Each entry includes: - name, destinationId (UUID), destinationType, workspaceId, createdAt.
Markdown format shows a heading per destination with bullet
fields. JSON format returns the raw API response array.Pagination: Use limit (1–100, default 20) and offset (default 0).
Examples: List all destinations in a workspace: params = { "workspace_ids": ["a1b2c3d4-..."] } List first 5 destinations across all workspaces: params = { "limit": 5 } Include soft-deleted destinations: params = { "include_deleted": true }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |