Logo
Modash API Documentation

Uploaded Videos

GET {{baseUrl}}/v1/raw/youtube/uploaded-videos?url=<string>&sorted_by=<string>&after=<string>

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

 

Body PARAM

Key Datatype Required Description 
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 descenting order (default) or `"p"` by Popularity
after
string Use `cursor` from the last page to get the next page



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "videos_list": { "total": "<number>", "videos": [ { "video_id": "<string>", "thumbnail": "<string>", "title": "<string>", "time": "<string>", "published_ago": "<string>", "views": "<number>" }, { "video_id": "<string>", "thumbnail": "<string>", "title": "<string>", "time": "<string>", "published_ago": "<string>", "views": "<number>" } ], "cursor": "<string>" } }

Curl
curl -X GET 'https://api.modash.io/v1/raw/youtube/uploaded-videos?url=<string>&sorted_by=<string>&after=<string>?url=<string>&sorted_by=<string>&after=<string>' -H 'Accept: application/json'

ENDPOINTS