YouTube feed

FREEMIUM
By inUtil Labs | Updated un mese fa | Data
Popularity

6 / 10

Latency

891ms

Service Level

100%

Health Check

100%

Followers: 0
API Creator:
Rapid account: In Util Labs
inUtil Labs
inutil
Log In to Rate API
Rating: 5 - Votes: 1

README

The YouTube - Feed API allows users to retrieve information about videos from a specified YouTube channel. By providing the name of a YouTube channel as input, the API returns a payload containing details of the videos published by that channel.

Payload Format:
The payload returned by the API includes the following information:

  • Channel Name: The name of the YouTube channel.
  • Videos: An array containing details of each video published by the channel. Each video object within the array includes the following attributes:
    • Link: The URL link to the YouTube video.
    • Published: The date and time when the video was published in ISO 8601 format.
    • Updated: The date and time when the video information was last updated in ISO 8601 format.
    • Thumbnail: The URL link to the thumbnail image of the video.
    • Star Rating: The star rating of the video.
    • Views: The number of views the video has received.

Example Payload:

{
  "lu4t Tech": {
    "title": "lu4t Tech",
    "videos": [
      {
        "link": "https://www.youtube.com/watch?v=XCjhlOi5lRE",
        "published": "2024-03-16T09:00:33+00:00",
        "updated": "2024-03-16T09:00:34+00:00",
        "thumbnail": "https://i1.ytimg.com/vi/XCjhlOi5lRE/hqdefault.jpg",
        "starRating": "0",
        "views": "20"
      },
      ...
      // Additional video objects
    ]
  }
}

Usage:
To utilize this API, provide the name of the YouTube channel for which you want to retrieve video information. The API will return the details of the videos published by the specified channel in the specified payload format.