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:
application/json
request bodies. The API does not accept any data via query params.localhost:8000/v1/connections/create
.update
methods, the whole object must be passed in, even the fields that did not change.Authentication (OSS):
airbyte
and password
by default - so base64 encoding airbyte:password
results in YWlyYnl0ZTpwYXNzd29yZA==
). So the full header reads 'Authorization': "Basic YWlyYnl0ZTpwYXNzd29yZA=="
Use this page to mock Airbyte Configuration API in your testing and development.
Run our mock API sample using the open source WireMock library, or in the free edition of WireMock Cloud. You'll have a working API server simulating the behavior of Airbyte Configuration API, which will allow you to keep building and testing even if the actual API you isn't currently available.