This message was deleted.
# ask-ai
s
This message was deleted.
u
You can find the list of available endpoints in the Airbyte API on the [Airbyte Public API documentation](https://reference.airbyte.com/reference/start). This includes endpoints for managing connections, sources, destinations, and more. For instance, some of the endpoints related to connections are: - `GET /v1/connections`: List connections - `POST /v1/connections`: Create a connection - `PUT /v1/connections/{connectionId}`: Update a connection - `DELETE /v1/connections/{connectionId}`: Delete a connection - `POST /v1/connections/sync`: Trigger a manual sync of the connection Please note that the actual host and port where the API is available might vary depending on your setup. In your case, it seems to be
localhost:8001
. Also, remember to replace
{connectionId}
with the actual ID of the connection you want to manage when using the endpoints that require it.