Get list of available qualities for stream

GET /qualities

Get list of available qualities for stream

Query parameters

  • url string Required

    YouTube url of livestream for which qualities should be peeked

Responses

  • OK

    Hide response attributes Show response attributes array[object]
    • code integer(int32) Required

      Numeric ID of the quality

    • resolution string Required

      Human-readable resolution of the quality

    • best boolean Required

      Whenever this is the best available quality (both audio and video)

GET /qualities
curl \
 -X GET https://pomu.app/api/qualities?url=string
Response examples (200)
[
  {
    "code": 42,
    "resolution": "string",
    "best": true
  }
]
Response examples (200)
[
  {
    "code": 42,
    "resolution": "string",
    "best": true
  }
]