What are the endpoints of Airbyte locally?
# ask-ai
d
What are the endpoints of Airbyte locally?
k
To access Airbyte endpoints locally, you can use the following base URL:
Copy code
<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:
Copy code
sh     kubectl port-forward svc/airbyte-server-svc 8001:80 &
2. Make a call to the API endpoint:
Copy code
<http://localhost:8001/api/public/v1/<endpoint>>
or the health endpoint:
Copy code
<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)
d
@kapa.ai Im running using GCP, what are the endpoints?
k
Hmm, I don't know enough to give you a confident answer yet. However, you can find more information about Airbyte's endpoints and their configurations in the [Airbyte documentation](https://docs.airbyte.com/) or by exploring the [Airbyte GitHub repository](https://github.com/airbytehq/airbyte/issues). For specific information about integrating with Google Cloud Platform (GCP), you might find the following resources helpful: - [Google Cloud Storage (GCS) Configuration](https://docs.airbyte.com/integrations/destinations/gcs#configuration) - [Google Cloud Storage (GCS) Requirements](https://docs.airbyte.com/integrations/destinations/gcs#requirements) - [Google PubSub Overview](https://docs.airbyte.com/integrations/destinations/pubsub#overview) If you have more specific questions or need further assistance, please let me know!