> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zype.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Stop broadcasting a live event

Use this endpoint to end broadcasting your live event.

# OpenAPI definition

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "Live (V3)",
    "version": "1.0.0",
    "description": "Live (V3) API for managing live streaming encoders"
  },
  "servers": [
    {
      "url": "https://api.zype.com"
    }
  ],
  "components": {
    "securitySchemes": {
      "api_key": {
        "type": "apiKey",
        "name": "api_key",
        "in": "query"
      }
    }
  },
  "security": [
    {
      "api_key": []
    }
  ],
  "paths": {
    "/live_events/{id}/stop": {
      "put": {
        "summary": "Stop broadcasting a live event",
        "description": "Use this endpoint to end broadcasting your live event.",
        "tags": [
          "Live Events"
        ],
        "operationId": "stopLiveEvent",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "ID of live event"
          }
        ],
        "responses": {
          "200": {
            "description": "Live event was successfully ended",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1live_events/post/responses/201/content/application~1json/schema"
                }
              }
            }
          },
          "404": {
            "description": "Live event not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1live_events~1%7Bid%7D/get/responses/404/content/application~1json/schema"
                }
              }
            }
          }
        }
      }
    }
  }
}
```