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

2. Create a 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.

4. Send a Message

That's it! The session is determined by your API ke.

$response = Http::withToken('YOUR_API_KEY')
    ->post('https://wapi.michotech.me/api/v1/messages/text', [
        'to' => '260971000000',
        'message' => 'Hello from MichoW API!'
    ]);

Error Responses

{
  "message": "The to field is required.",
  "errors": {
    "to": ["The to field is required."]
  }
}