https://api.telegram.org/bot*BOTTOKEN*/sendmessage?chat_id=exampleID&text=exampleText&parse_mode=HTML
What does this do? With your parameters adjusted correctly this call will send a message to the exampleID user with the exampleText as message with an HTML encoding. Standard encoding is markdown (see source) but in some cases you may use HTML.
Next to the chat_id, text and parse_mode you can use the following parameters:
Only the chat_id and the text parameter are required to send a simple message, all other operators are optional. The disable_web_page_preview and the disable_notification method will need a boolean operator (true or false) to work. All of the parameters are case sensitive so watch out!
For more information jump to the sendMessage part of the bot api doku.