curl -u airbyte:password --request GET \ --url ...
# help-api-cli-orchestration
f
curl -u airbyte:password --request GET \ --url http://localhost:8000/v1/health \ --header 'accept: application/json' \ --header 'content-type: application/json'
u
Based on the information provided in the extracts, it seems like you're trying to check the health of your Airbyte instance using a curl command. However, the curl command you've provided seems to be incomplete or incorrect. According to a [support conversation](https://airbytehq.slack.com/archives/C021JANJ6TY/p1667796062741359) in the extracts, the
/v1/health
endpoint does not require any authentication. Therefore, you can simply use the following command to check the health of your Airbyte instance:
Copy code
bash curl <http://localhost:8000/v1/health>
If you're still facing issues, it might be related to the basic authentication. As per the same [support conversation](https://airbytehq.slack.com/archives/C021JANJ6TY/p1667796062741359), disabling basic auth may help. You can find more information about this in the [Airbyte Proxy README](https://github.com/airbytehq/airbyte/blob/master/airbyte-proxy/README.md). Please note that the information provided is based on the extracts given and may not fully solve your issue. If you're still facing problems, I would recommend reaching out to the Airbyte support or community for more specific assistance.