# Wowza Streaming Cloud REST API Reference Documentation **Provider:** Wowza Streaming Cloud REST API Reference Documentation **Category:** entertainment **Base URL:** `https://api-sandbox.cloud.wowza.com/api/v1` **Auth:** oauth2 — `Authorization: Bearer YOUR_ACCESS_TOKEN` **Rate Limit:** 4,000 API calls/min (authenticated) **Free Tier:** Yes — [object Object] **Pricing:** Free tier available (freemium) **Docs:** https://www.wowza.com/contact ## Description About the REST API The Wowza Streaming CloudTM REST API (application programming interface) offers complete programmatic control over live streams, transcoders, stream sources, and stream targets. Anything you can do in the Wowza Streaming Cloud UI can also be achieved by making HTTP- ## Endpoints | Method | Endpoint | Description | |--------|----------|-------------| | GET | `https://api-sandbox.cloud.wowza.com/api/v1/api/v1/specs` | Fetch Swagger information | | GET | `https://api-sandbox.cloud.wowza.com/api/v1/live_streams` | Fetch all live streams | | POST | `https://api-sandbox.cloud.wowza.com/api/v1/live_streams` | Create a live stream | | DELETE | `https://api-sandbox.cloud.wowza.com/api/v1/live_streams/{id}` | Delete a live stream | | GET | `https://api-sandbox.cloud.wowza.com/api/v1/live_streams/{id}` | Fetch a live stream | | PATCH | `https://api-sandbox.cloud.wowza.com/api/v1/live_streams/{id}` | Update a live stream | | PUT | `https://api-sandbox.cloud.wowza.com/api/v1/live_streams/{id}/regenerate_connection_code` | Regenerate the connection code for a live stream | | PUT | `https://api-sandbox.cloud.wowza.com/api/v1/live_streams/{id}/reset` | Reset a live stream | ## Authentication OAuth 2.0 or JWT (Server Authentication) for machine-to-machine ``` Authorization: Bearer YOUR_ACCESS_TOKEN ``` ## Sample Request ```bash curl -X GET 'https://api-sandbox.cloud.wowza.com/api/v1/api/v1/specs' \ -H 'wsc-access-key: YOUR_API_KEY' ``` ## Sample Response ```json {} ``` ## Pricing Details Individual: free (10GB). Business Starter: $15/user/mo (unlimited storage). Business: $20/user/mo. Enterprise: custom. --- *Source: [API Map](https://apimap.dev/apis/wowza-streaming-cloud-rest-api-reference/) — CC BY 4.0*