David Maldonado
05/31/2024, 8:45 PMkapa.ai
05/31/2024, 8:45 PM<http://localhost:8006/v1>
This URL is used to interact with the Airbyte Public API. For example, you can make requests to various endpoints documented in the [Airbyte API Reference](https://reference.airbyte.com). Additionally, if you are running an instance of Airbyte locally using Kubernetes, you can access the Airbyte API by setting up a port forward to the airbyte-server
Kubernetes service. Here are the steps: 1. Set up a port forward to the airbyte-server
Kubernetes service by running: sh kubectl port-forward svc/airbyte-server-svc 8001:80 &
2. Make a call to the API endpoint: <http://localhost:8001/api/public/v1/<endpoint>>
or the health endpoint: <http://localhost:8001/api/public/health>
For more detailed information, you can refer to the [Airbyte API Reference](https://reference.airbyte.com) and the [Developing Locally](https://docs.airbyte.com/contributing-to-airbyte/resources/developing-locally) documentation. If you encounter issues with the Kubernetes setup, such as the svc/airbyte-server-svc
service not existing, you might want to consider using Docker Compose to launch Airbyte locally. For further details, you can check the following sources: - [Airbyte Public API Base URL](https://reference.airbyte.com/reference/start) - [Developing Locally](https://docs.airbyte.com/contributing-to-airbyte/resources/developing-locally) - [Github Issue on Kubernetes setup](https://github.com/airbytehq/airbyte/issues/38093)David Maldonado
05/31/2024, 8:48 PMkapa.ai
05/31/2024, 8:48 PM