Getting Started • WAYN API
Start your WAYN integration
Request partner access, configure the staging base URL, authenticate, and make your first verification request.
Production Base URL
All API requests for WAYN API should be targeted at
https://api-stg.wayn.ae/api/v1 unless testing in a local sandbox.Integration Steps
Request partner access
Request credentials from your WAYN account owner and keep your integration guide and support contact handy.
WAYN_BASE_URL=https://api-stg.wayn.ae/api/v1Authenticate
Use the authentication endpoint to obtain a token for protected requests.
WAYN_TOKEN=your_access_tokenVerify mobile numbers
Send a verification request with one or more customer mobile numbers.
curl "$WAYN_BASE_URL/ext/verify" \
-H "Authorization: Bearer $WAYN_TOKEN" \
-H "Content-Type: application/json" \
-d '{"mobileNumbers":["971529694603","971501493961"]}'