You need to log in to access the API key.
Log InWelcome to the StreamUP Video Data API. This API allows you to fetch video information, including total views, today’s views, and more, for your account. Below are the details on how to use this API.
The base URL for the API is:
https://api.streamup.cc/v1/data
api_key
(string): Your unique API key to authenticate requests.page
(integer, optional): The page number to retrieve (default is 1).search
(string, optional): A search term to filter videos by title.GET /v1/data?api_key=YOUR_API_KEY&page=1
GET /v1/data?api_key=YOUR_API_KEY&search=example&page=1
The API returns a JSON object with the following structure:
{
"total_videos": 1200,
"total_views": 35000,
"total_today_views": 500,
"videos": [
{
"title": "Sample Video",
"ID": 123,
"thumbnail": "https://example.com/thumbnail.jpg",
"Filecode": "abcd1234",
"last_updated": "2025-01-08",
"total_views": 1500,
"today_views": 50
},
{
"title": "Another Video",
"ID": 124,
"thumbnail": "https://example.com/thumbnail2.jpg",
"Filecode": "efgh5678",
"last_updated": "2025-01-08",
"total_views": 2000,
"today_views": 30
}
]
}
{
"message": "API key is required."
}
{
"message": "Invalid API key."
}
Pagination: Each page contains up to 200 videos. Use the page
parameter to access additional pages.
Search Filter: The search
parameter filters videos by their title. If no videos match the search term, the API will return an empty videos
array.
Choose your themes & layouts etc.