Server Status
WPPConnect server is active on port 21465
📅 Server Time:
📚 Available API Endpoints
Session Management
- POST /api/:session/start-session
- GET /api/:session/qrcode-session
- POST /api/:session/logout-session
- GET /api/:session/status-session
Messages
- POST /api/:session/send-message
- POST /api/:session/send-image
- POST /api/:session/send-file
- POST /api/:session/send-sticker
Groups
- GET /api/:session/all-groups
- POST /api/:session/create-group
- POST /api/:session/add-participant-group
- GET /api/:session/group-invite-link/:groupId
🔍 Quick Test Endpoints
curl https://node.mypowerly.com/healthz
curl https://node.mypowerly.com/metrics
curl https://node.mypowerly.com/api-docs
📋 Example API Call:
# Start a new session
curl -X POST https://node.mypowerly.com/api/my-session/start-session \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json"
# Send a message
curl -X POST https://node.mypowerly.com/api/my-session/send-message \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"phone": "5511999999999", "message": "Hello World!"}'