Complete: Split documentation into individual category files

- Split categories 5-15 into separate files for better organization
   - Added User, MAG, Enigma, Streams, Channel, Station, Movie, Series, Episode, Server, and Settings APIs
   - Each category now has its own dedicated documentation file
   - Total: 111 endpoints fully documented across 15 categories
This commit is contained in:
worldofiptvcom
2025-12-12 16:48:37 +03:00
parent 0d988ce6fa
commit 9b6b1eb6d0
11 changed files with 1559 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
# Station API - Radio Station Management
Radio station configuration and management endpoints.
## 📋 Available Operations
| Action | Method | Description |
|--------|--------|-------------|
| `create_station` | POST | Create radio station |
| `edit_station` | POST | Edit station settings |
| `delete_station` | POST | Remove station |
| `enable_station` | POST | Activate station |
| `disable_station` | POST | Suspend station |
| `get_station` | GET | Get station details |
---
## Quick Example
```bash
curl -X POST "http://your-server.com/cSbuFLhp/?api_key=API_KEY&action=create_station" \
-d "station_name=Radio 1" \
-d "stream_source=http://radio.example.com/stream" \
-d "category_id=1"
```
---
## 📚 Related: [GET INFO API - Query Stations](02-get-info.md#10-get-all-radio-stations)