# Airbyte Configuration API **Provider:** Airbyte Configuration **Category:** maps **Base URL:** `http://airbyte.local` **Auth:** bearer โ€” `Authorization: Bearer YOUR_TOKEN` **Rate Limit:** Self-hosted: unlimited ยท Cloud: usage-based **Free Tier:** Yes โ€” available **Pricing:** Enterprise / contact sales (subscription) **Docs:** http://airbyte.local ## Description Airbyte Configuration API https://airbyte.io. This API is a collection of HTTP RPC-style methods. While it is not a REST API, those familiar with REST should find the conventions of this API recognizable. Here are some conventions that this API follows: * All endpoints are ht ## Endpoints | Method | Endpoint | Description | |--------|----------|-------------| | POST | `http://airbyte.local/v1/attempt/save_stats` | For worker to set sync stats of a running attempt. | | POST | `http://airbyte.local/v1/attempt/save_sync_config` | For worker to save the AttemptSyncConfig for an attempt. | | POST | `http://airbyte.local/v1/attempt/set_workflow_in_attempt` | For worker to register the workflow id in attempt. | | POST | `http://airbyte.local/v1/connections/create` | Create a connection between a source and a destination | | POST | `http://airbyte.local/v1/connections/delete` | Delete a connection | | POST | `http://airbyte.local/v1/connections/get` | Get a connection | | POST | `http://airbyte.local/v1/connections/list` | Returns all connections for a workspace. | | POST | `http://airbyte.local/v1/connections/list_all` | Returns all connections for a workspace, including deleted connections. | ## Authentication Bearer token in the Authorization header ``` Authorization: Bearer YOUR_TOKEN ``` ## Sample Request ```bash curl -X GET 'http://airbyte.local/v1/attempt/save_stats' \ -H 'Authorization: Bearer YOUR_TOKEN' ``` ## Sample Response ```json {} ``` ## Pricing Details Free: open-source self-hosted (MIT license). Airbyte Cloud free up to $100 credits/month (usage-based). Team $1,500/mo. Enterprise custom. ETL/ELT platform. --- *Source: [API Map](https://apimap.dev/apis/airbyte-configuration/) โ€” CC BY 4.0*