# Get user streams Returns the list of live streams owned by the authenticated user. Each stream includes its configuration, assigned zone, metadata, and connected streaming destinations. Endpoint: GET /streams/mine Version: 1.0.0 Security: bearerAuth ## Response 200 fields (application/json): - `id` (string) Example: "st_xxxxxxxxxxxxx" - `metadata` (object) - `metadata.name` (string) Example: "OUTPUT 1" - `metadata.category` (string) Stream category Enum: "simulcast", "schedule" - `createdAt` (string) - `isDisabled` (boolean) - `config` (object) - `config.pullUrlMaxRetry` (integer) Example: 5 - `config.recordingTier` (string) Example: "rise" - `destinations` (array) - `destinations.label` (string) Example: "YouTube" - `destinations.appName` (string) Example: "youtube" - `destinations.rtmpBase` (string) Example: "rtmp://a.rtmp.youtube.com/live2" - `zone` (object) - `zone.category` (string) Example: "simulcast" - `zone.host` (string) Example: "stream.livepush.io" - `zone.isPublic` (boolean) Example: true - `zone.isDefault` (boolean) Example: true ## Response 401 fields