telegram.cloudsite.com.my Open in urlscan Pro
2606:4700:3032::ac43:d1f5  Public Scan

URL: https://telegram.cloudsite.com.my/
Submission: On March 16 via automatic, source certstream-suspicious — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

API Documentation

CHANNEL LIST

RWD : RWDPay 
UPC : Unionpaycards
KB : Kardbys 
TEST : Test Channel 
CRYPTO : Crypto 
HQ : Haoqiao 

                                 

SEND NOTIFICATION MESSAGE

POST https://telegram.abtrtech.com/api/message/send

{
    "key" : "your-key",
    "secret" : "your-secret",
    "channel_id" : "RWD",
    "message" : "Put your Message Here"
}
                                 

SEND NOTIFICATION MESSAGE WITH BUTTON

POST https://telegram.abtrtech.com/api/messageWithButton/send

{
    "key" : "your-key",
    "secret" : "your-secret",
    "channel_id"  : "RWD",
    "message" : "Put your Message Here",
    "button" : 
	[
    	{
    		"text" : "button 1",
    		"url" : "https://www.google.com"
    	},
		{
    		"text" : "button 2",
    		"url" : "https://www.google.com"
    	}
    ]
}                                

SAMPLE BACKEND CODE

        $fields = [
            'key'           => 'base64:9uUkrzCmly7eSMDlg3rSfb3Dv/tLsfaR9FxzqfkXdEg=',
            'secret'        => '1i4vQt1M7lYVfSxDyYgW1i4vQt1M7lYVfSxDyYgW1i4vQt1M7lYVfSxDyYgW',
            'channel_id'    => 'TEST',
            'message'       => 'Hello World',
            'button'        => [
                [
                    'text' => 'Button 1',
                    'url' => 'https://www.google.com'
                ],
                [
                    'text' => 'Button 1',
                    'url' => 'https://www.google.com'
                ]               
            ]
        ];
        $fields_string = http_build_query($fields);
        
        $ch = curl_init();        
        curl_setopt($ch,CURLOPT_URL, "https://telegram.abtrtech.com/api/message/send");
        curl_setopt($ch,CURLOPT_POST, true);
        curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);        
        curl_setopt($ch,CURLOPT_RETURNTRANSFER, true); 
        $result = curl_exec($ch);