airbyte-api
Python Client SDK for Airbyte API
What it is and what it does
airbyte-api is a Python SDK that wraps the Airbyte API, letting you programmatically create, update, delete, and manage connections, sources, destinations, and other Airbyte resources. It uses httpx and pydantic under the hood to handle HTTP requests and data validation. The SDK supports both synchronous and asynchronous workflows, so you can integrate Airbyte automation into scripts, applications, or orchestration tools.
You authenticate using API Keys from the Airbyte Developer Portal and then interact with resources like connections through a client object. The SDK is actively maintained and requires Python 3.10 or later. It's designed for developers who want to automate data pipeline operations without manually calling REST endpoints.
Use it for:
- Automate creation and management of data connections between sources and destinations in Airbyte Cloud.
- Build custom orchestration workflows that trigger Airbyte syncs or manage connection configurations programmatically.
- Integrate Airbyte operations into CI/CD pipelines or infrastructure-as-code deployments.
- Dynamically provision data pipelines for multi-tenant SaaS applications using Airbyte as the backbone.
- Monitor and update connection details, namespace formats, and other settings without manual portal access.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Python SDK for programmatically controlling Airbyte Cloud, OSS, and Enterprise through an API, supporting both synchronous and asynchronous operations.
Yes, if you need to automate Airbyte operations. The SDK has low install friction, active maintenance, no known vulnerabilities, and sits in the top 5000 packages by download volume. The main caveat is that the license status is unclear—verify the actual license in the repository before using in proprietary work. Requires Python 3.10+.
Install
airbyte-api on PyPI
pip
pip install airbyte-apiuv
uv add airbyte-apipoetry
poetry add airbyte-apiInstalling airbyte-api
Before you install
Low friction installation with a pure-Python wheel and three common dependencies (httpx, httpcore, pydantic). Actively maintained with a recent release 52 days ago and ongoing repository activity.
License in practice
License status is unclear—no SPDX identifier or raw license text is available in the package metadata. Verify the actual license terms in the repository before using in proprietary or commercial contexts.
Quickstart
pip install airbyte-api
from airbyte_api import AirbyteAPI, models
with AirbyteAPI(
security=models.Security(
basic_auth=models.SchemeBasicAuth(
password="your_password",
username="your_username",
),
),
) as client:
res = client.connections.create_connection(request={
"source_id": "...",
"destination_id": "...",
"name": "My Connection",
})
Requires Python 3.10 or later. You must obtain an API Key from the Airbyte Developer Portal before making requests.
Verify before relying
- Whether the SDK supports all Airbyte deployment types (Cloud, OSS, Enterprise) equally or with differences.
- Rate limiting, retry behavior, and timeout defaults for API requests.
- Whether async operations require additional setup or dependencies beyond what is listed.
Package facts
| License | not declared (unclear) |
| Python support | supports the current Python release (>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 3 — httpcore, httpx, pydantic |
| Maintenance | actively maintained — 52 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 5,676,101/month — #2,056 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: airbyte_api-1.0.1-py3-none-any.whl
Tags
More WWW/HTTP packages
urllib3 is an HTTP client library that provides…
permissive · top 100 on PyPI
requestsRequests is a Python HTTP library that…
permissive · top 100 on PyPI
h11h11 is a pure-Python HTTP/1.1 protocol…
permissive · top 100 on PyPI
httpxHTTPX is a fully featured HTTP client library…
permissive · top 100 on PyPI
httpcoreA minimal low-level HTTP client library that…
permissive · top 100 on PyPI
aiohttpaiohttp is an async HTTP client and server…
permissive · top 100 on PyPI
airbytePyAirbyte lets you run Airbyte data connectors…
unclear · top 5,000 on PyPI
apache-airflow-providers-airbyteIntegrates Airbyte data pipelines into Apache…
permissive · top 5,000 on PyPI
dubDub is a Python SDK for the Dub.co link…
unclear · top 15,000 on PyPI
airbyte-cdkA framework for building Airbyte connectors…
permissive · top 5,000 on PyPI
airbyte-internal-opsProvides MCP (Model Context Protocol) server…
permissive · top 15,000 on PyPI
dagster-airbyteIntegrates Airbyte data connectors with…
permissive · top 15,000 on PyPI
airbyte-source-declarative-manifestBuilds source connectors from declarative…
permissive · top 15,000 on PyPI
airbyte-protocol-modelsProvides Python data models and type…
permissive · top 15,000 on PyPI
komboType-safe Python SDK for the Kombo Unified API,…
unclear · top 15,000 on PyPI
airbyte-connector-modelsProvides automatically generated Pydantic…
permissive · top 15,000 on PyPI