Types of VideoNote in the Telegram Bot API

telegram bot api video note types
02 May 2025


In the world of Telegram bots, one of the attractive and practical features is the use of short videos called VideoNote. This type of video has specific dimensions and is commonly used to send quick and concise content to users.


If you also want your Telegram bot to be able to send short videos, you should familiarize yourself with the types of VideoNote. These videos are a type of video file that, unlike regular videos, are smaller in size and easily shareable in chats.


Using VideoNote is very common because often users are looking for the quickest and most efficient way to access information and content. These videos are automatically displayed in the chat environment and do not require downloading, which allows for a better user experience.


Sending and receiving these videos in the Telegram API can be done easily, and it is sufficient to use the specified parameters in the API documentation. For this reason, learning how to work with VideoNote can be a significant step for developers.


Example Code for Sending VideoNote


  {
"chat_id": "",
"video_note": {
"file_id": "",
"width": ,
"height":
}
}

Code Explanations


In the above code:



"chat_id": ""

This identifies the chat in which the video will be sent.



"video_note": {

This section starts the details of the short video.



"file_id": "",

This identifies the video file, which has been previously uploaded.



"width": ,

This specifies the width of the video.



"height":

This specifies the height of the video.



}

This object contains parameters related to the video.


FAQ

?

How can I use VideoNote in my Telegram bot?

?

Can I change the dimensions of the videos sent?

?

Why should we use VideoNote?

?

Can I send longer videos than VideoNote?