Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/galvinpython/latest-uploads-api
Shows the latest five uploads for any YouTube channel
https://github.com/galvinpython/latest-uploads-api
typescript youtube youtube-api youtube-api-v3 youtube-video
Last synced: 3 months ago
JSON representation
Shows the latest five uploads for any YouTube channel
- Host: GitHub
- URL: https://github.com/galvinpython/latest-uploads-api
- Owner: GalvinPython
- Created: 2024-06-29T17:09:49.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-09-30T01:35:08.000Z (3 months ago)
- Last Synced: 2024-10-11T19:42:34.754Z (3 months ago)
- Topics: typescript, youtube, youtube-api, youtube-api-v3, youtube-video
- Language: TypeScript
- Homepage: https://latestvid.stats100.xyz/
- Size: 62.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Latest YouTube Uploads
Get the latest five uploads for any YouTube channel!# How to use
It's very simple, just make a request to `https://latestvid.stats100.xyz/get/`
For example, to get the latest uploads for [MrBeast](https://youtube.com/@mrbeast), just have to make a simple request to `https://latestvid.stats100.xyz/get/UCX6OQ3DkcsbYNE6H8uQQuVA` and get an example response like this:```json
[
{
"videoId": "KkCXLABwHP0",
"title": "I Built 100 Homes And Gave Them Away!"
},
{
"videoId": "PWirijQkH4M",
"title": "World’s Deadliest Obstacle Course!"
},
{
"videoId": "U_LlX4t0A9I",
"title": "$10,000 Every Day You Survive In The Wilderness"
},
{
"videoId": "T8I165Qxeo8",
"title": "Sprinting with More and More Money"
},
{
"videoId": "i-9V21MqlhY",
"title": "Giving 1000 Phones Away"
}
]
```