# Destinations Streaming destinations (YouTube, Facebook, RTMP, etc.) ## List saved destinations - [GET /streams/me/destinations](https://api.livepush.io/openapi/destinations/paths/~1streams~1me~1destinations/get.md): Returns the list of saved streaming destinations owned by the authenticated user. Saved destinations can be used for multistreaming and may include platforms such as YouTube, Facebook, or custom RTMP endpoints. ## Create new stream destination - [POST /streams/{stream_id}/destinations](https://api.livepush.io/openapi/destinations/paths/~1streams~1%7Bstream_id%7D~1destinations/post.md): Creates and attaches a new streaming destination to the specified live stream. This endpoint is used to add platforms such as YouTube, Facebook, or custom RTMP destinations to an existing live stream. ## Enable stream destination - [PUT /streams/{stream_id}/destinations/{destination_id}/enable](https://api.livepush.io/openapi/destinations/paths/~1streams~1%7Bstream_id%7D~1destinations~1%7Bdestination_id%7D~1enable/put.md): Enables a previously added destination for the specified live stream. Once enabled, the destination will start receiving the live stream when the stream is online. ## Disable stream destination - [PUT /streams/{stream_id}/destinations/{destination_id}/disable](https://api.livepush.io/openapi/destinations/paths/~1streams~1%7Bstream_id%7D~1destinations~1%7Bdestination_id%7D~1disable/put.md): Disables an active destination for the specified live stream. When disabled, the destination will no longer receive the live stream until it is re-enabled. ## Delete stream destination - [DELETE /streams/{stream_id}/destinations/{destination_id}](https://api.livepush.io/openapi/destinations/paths/~1streams~1%7Bstream_id%7D~1destinations~1%7Bdestination_id%7D/delete.md): Permanently deletes a destination from the specified live stream. Once deleted, the destination will be removed entirely and can no longer be enabled or reused.