0
Total Devices
0
Online Now
0
Offline
📡

Add a New WhatsApp Device

Make sure the Chrome extension is open in at least one browser profile

Connected Devices

🔌

No devices yet.
Click Add Device to connect your WhatsApp.

API Settings

Keep this key private. It allows sending messages from your account.

Documentation

Send Message Endpoint

POST https://parkingnearme.online/api/wa-device-manager.php?action=send_api_message
Parameter Type Description
api_key String Your secret API key (above)
number String Recipient number with country code (e.g., +91XXXXXXXXXX)
message String Text content or Caption
media_url String (Optional) Public URL of Image/Video/PDF. Type is auto-detected.
Example (Text)
curl -X POST "https://parkingnearme.online/api/wa-device-manager.php?action=send_api_message" \ -d "api_key=YOUR_KEY" \ -d "number=+91XXXXXXXXXX" \ -d "message=Hello World"
Example (Image/Media)
curl -X POST "https://parkingnearme.online/api/wa-device-manager.php?action=send_api_message" \ -d "api_key=YOUR_KEY" \ -d "number=+91XXXXXXXXXX" \ -d "message=Check this out" \ -d "media_url=https://example.com/image.png"

Send Message (GET Method)

Useful for simple integrations like URL triggers or webhooks.
GET https://parkingnearme.online/api/wa-device-manager.php?action=send_api_message
https://parkingnearme.online/api/wa-device-manager.php?action=send_api_message&api_key=YOUR_KEY&number=+91XXXXXXXXXX&message=Hello+World