airbyte_get_source
Retrieve full details of a source connector by its UUID, including name, type, workspace, creation date, and configuration with secrets masked.
Instructions
Get full details of a single source connector by its UUID.
Returns the source name, type (e.g. postgres, stripe, google-sheets), workspace, creation date, and connector configuration. Secrets in the configuration object are masked by the Airbyte API.
When to Use: - Inspect a specific source's configuration or connector type. - Verify a source ID is valid. - Check when a source was created or which workspace owns it.
When NOT to Use: - If you need to browse sources, use airbyte_list_sources. - To see sync activity, use airbyte_list_jobs filtered by the connection that uses this source.
Returns: Source details including: name, sourceId, sourceType, 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 source by ID: params = { "source_id": "a1b2c3d4-..." } Get raw JSON: params = { "source_id": "a1b2c3d4-...", "response_format": "json" }
Error Handling: Returns a 404 message if the source ID does not exist.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |