Onboarding
Register
Create a new wede account — starts in demo mode
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Create a new wede account — starts in demo mode
| Field | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Full name |
email | string | Yes | Work email address |
password | string | Yes | Minimum 8 characters |
country | string | Yes | ISO 3166-1 alpha-2 country code (e.g. PT, AE, NG) |
verticals | array | No | Areas of interest: healthcare, banking, telecom, logistics, emergency, gov, other |
curl -X POST https://api.wede.pt/v1/onboarding/register \
-H "Content-Type: application/json" \
-d '{
"name": "Jane Smith",
"email": "jane@hospital.org",
"password": "SecurePass123",
"country": "NG",
"verticals": ["healthcare", "emergency"]
}'
{
"status": "pending_verification",
"message": "Account created. Check your email to activate your account."
}
