Docs/Quick Start

Quick Start Guide

Send your first message in under 5 minutes. This guide will walk you through the basics.

1

Create an Account

Sign up for a WeTalk account to get your API credentials. New accounts receive free credits to test the platform.

Create your account
2

Get Your API Key

Navigate to your dashboard and find your API key in the Settings section. Keep this key secure.

# Your API Key
wt_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
3

Send Your First SMS

Use the API to send your first message. Here's a simple example using cURL:

cURL
curl -X POST https://api.wetalk.com/v1/sms/send \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "to": "+1234567890",
    "message": "Hello from WeTalk!",
    "sender_id": "WeTalk"
  }'
4

Check the Response

A successful request returns a message ID that you can use to track delivery status:

Response
{
  "success": true,
  "message_id": "msg_abc123xyz",
  "status": "queued",
  "credits_used": 1
}