SendApp Logo
🎯 NEW: All endpoints are now GET for simplicity! Copy URLs and test them directly in the browser.

Health Check

Verify that the API is working

GET
https://official.sendapp.cloud/apiv3/health

List Templates

Get all approved WhatsApp templates

GET
https://official.sendapp.cloud/apiv3/templates?access_token=YOUR_TOKEN
Complete URL example: https://official.sendapp.cloud/apiv3/templates?access_token=abc123xyz

đź’¬ Send Text Message

Send text messages with GET parameters - Super simple!

GET
https://official.sendapp.cloud/apiv3/send/text?access_token=TOKEN&number=NUMBER&message=MESSAGE

Available parameters:

Practical examples:

Simple message:
https://official.sendapp.cloud/apiv3/send/text?access_token=abc123&number=+1234567890&message=Hello!

Complete message:
https://official.sendapp.cloud/apiv3/send/text?access_token=abc123&number=+1234567890&message=Your order is ready&header=ABC Store&footer=Thank you for choosing us

Send Media File

Send images, videos, audio or documents

GET
https://official.sendapp.cloud/apiv3/send/media?access_token=TOKEN&number=NUMBER&type=TYPE&media_url=URL&filename=FILENAME

Available parameters:

Practical examples:

Send image:
https://official.sendapp.cloud/apiv3/send/media?access_token=abc123&number=+1234567890&type=image&media_url=https://example.com/photo.jpg&message=Here's the photo!&filename=photo.jpg

Send video:
https://official.sendapp.cloud/apiv3/send/media?access_token=abc123&number=+1234567890&type=video&media_url=https://example.com/video.mp4&filename=video.mp4

Send document:
https://official.sendapp.cloud/apiv3/send/media?access_token=abc123&number=+1234567890&type=document&media_url=https://example.com/doc.pdf&filename=Invoice.pdf

Send WhatsApp Template

Send approved templates with dynamic parameters

GET
https://official.sendapp.cloud/apiv3/send/template?access_token=TOKEN&number=NUMBER&template_id=ID&language_code=LANG

Available parameters:

Practical examples:

Simple template:
https://official.sendapp.cloud/apiv3/send/template?access_token=abc123&number=+1234567890&template_id=welcome_message&language_code=en&param1=John&param2=Doe

Template with media:
https://official.sendapp.cloud/apiv3/send/template?access_token=abc123&number=+1234567890&template_id=promo_summer&language_code=en&param1=John&header_media=https://shop.com/banner.jpg&button1=DISCOUNT25

Order template:
https://official.sendapp.cloud/apiv3/send/template?access_token=abc123&number=+1234567890&template_id=order_confirmation&language_code=en&param1=John&param2=ORD-12345&param3=$49.99&button1=TRACK_ORDER

âť“ Frequently Asked Questions

🔑 How do I get the token?

Go to SendApp Official API → Developer Tools → Access Token


📱 What format should the number have?

Use international format: +393451234567 (with + prefix)


đź”— Can I test directly in the browser?

Yes! All endpoints are GET, copy the URL and paste it in the browser!


đź“‹ How do I see my templates?

Use the /templates endpoint with your token to see all available templates


🎯 What are param1, param2, etc.?

They are dynamic template values. If the template says "Hello {{1}}, your order {{2}} is ready", then param1="John" and param2="12345"