diff --git a/docs/api/rest.md b/docs/api/rest.md
index 63264ff2..dd843edc 100644
--- a/docs/api/rest.md
+++ b/docs/api/rest.md
@@ -665,53 +665,3 @@ If the check fails, the errors attribute in the object will list what caused the
```
-
-
-/api/event_forwarding
-
-Set up event forwarding to another Home Assistant instance.
-
-Requires a JSON object that represents the API to forward to.
-
-```json
-{
- "host": "machine",
- "api_password": "my_super_secret_password",
- "port": 8880 // optional
-}
-```
-
-It will return a message if event forwarding was set up successfully.
-
-```json
-{
- "message": "Event forwarding setup."
-}
-```
-
-
-
-
-/api/event_forwarding
-
-Cancel event forwarding to another Home Assistant instance.
-
-Requires a JSON object that represents the API to cancel forwarding to.
-
-```json
-{
- "host": "machine",
- "api_password": "my_super_secret_password",
- "port": 8880 // optional
-}
-```
-
-It will return a message if event forwarding was canceled successfully.
-
-```json
-{
- "message": "Event forwarding cancelled."
-}
-```
-
-