airbyte_get_destination
Inspect a specific destination connector by providing its UUID to obtain name, connector type, workspace, creation date, and configuration with masked secrets.
Instructions
Get full details of a single destination connector by its UUID.
Returns the destination name, type (e.g. bigquery, snowflake, s3), workspace, creation date, and connector configuration. Secrets in the configuration object are masked by the Airbyte API.
When to Use: - Inspect a specific destination's configuration or connector type. - Verify a destination ID is valid. - Check when a destination was created or which workspace owns it.
When NOT to Use: - If you need to browse destinations, use airbyte_list_destinations. - To see sync activity targeting this destination, use airbyte_list_jobs filtered by the relevant connection.
Returns: Destination details including: name, destinationId, destinationType, workspaceId, createdAt, and configuration (secrets masked).
Markdown format renders a heading with bullet-point fields.
JSON format returns the full API response object.Examples: Get destination by ID: params = { "destination_id": "a1b2c3d4-..." } Get raw JSON: params = { "destination_id": "a1b2c3d4-...", "response_format": "json" }
Error Handling: Returns a 404 message if the destination ID does not exist.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |