# Uploaded Shorts

Returns a list of 30 uploaded YouTube shorts to the channel with a limited list of details.

Endpoint: GET /raw/youtube/uploaded-shorts
Security: accessToken

## Query parameters:

  - `url` (string, required)
    YouTube url to channel's page, i.e. https://www.youtube.com/@{channelName}

  - `sorted_by` (string)
    Sorted by a passed parameter: `"dd"` by Date in descending order (default) or `"p"` by Popularity

  - `after` (string)
    Use `cursor` from the last page to get the next page

## Response 200 fields (application/json):

  - `shorts_list` (object, required)

  - `shorts_list.shorts` (array, required)

  - `shorts_list.shorts.short_id` (string, required)

  - `shorts_list.shorts.thumbnail` (string, required)

  - `shorts_list.shorts.title` (string, required)

  - `shorts_list.shorts.views` (number)

  - `shorts_list.cursor` (string, required)

  - `success` (boolean, required)

