Getting Started
Get up and running with the MichoW API in under 5 minutes.
1. Create an Account
Sign up at https://wapi.michotech.me/signup to get your free account.
2. Create a WhatsApp Session
Go to the Sessions page in your dashboard, click New Session, and scan the QR code with WhatsApp on your phone. All session management (create, connect, disconnect) is done from the dashboard.
3. Generate an API Key
Navigate to the API Keys section and click Generate API Key. Select the session you want this key to control, then copy the key immediately — it won't be shown again.
Each API key is bound to one session. All API calls using that key will automatically use the linked session — no session IDs needed in your requests.
4. Send a Message
curl -X POST https://wapi.michotech.me/api/v1/messages/text \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"to": "260971000000", "message": "Hello from MichoW API!"}'
That's it! The session is determined by your API key — no session ID required in the URL.
5. Check Message History
curl https://wapi.michotech.me/api/v1/messages \
-H "Authorization: Bearer YOUR_API_KEY"