Automate link creation, dynamic QR generation, user attribution, and webhook event streaming programmatically.
WilderLinks REST API allows developer teams to embed smart link creation and analytics directly into their SaaS workflows.
import Swift
import WilderlinksSDK
// Initialize WilderLinks in AppDelegate / App struct
WilderlinksClient.shared.configure(apiKey: "wl_live_key...")
// Catch Universal Link Handoff
func application(_ app: UIApplication, continue userActivity: NSUserActivity, ...) -> Bool {
return WilderlinksClient.shared.continueUserActivity(userActivity) { deepLink in
print("Destination screen:", deepLink.targetPath)
print("Campaign referrer:", deepLink.referrer)
}
}Why mobile teams trust WilderLinks to route millions of daily active app users.
Designed for enterprise scaling with strict 99.99% uptime SLAs and rate-limited API keys.
Receive instant HTTP POST webhooks on click, app open, install, and lead capture events.
Clean Postman collection and OpenAPI schemas for instant developer integration.
Deep technical capabilities built into every WilderLinks deployment.
Generate dynamic links via simple POST requests with JSON payload parameters.
curl -X POST https://api.wilderlinks.com/v1/organizations/org_123/links \
-H "Authorization: Bearer wl_live_secret..." \
-H "Content-Type: application/json" \
-d '{
"destinationUrl": "https://myapp.com/item/42",
"iosAppId": "id987654321",
"androidPackageName": "com.myapp.app",
"slug": "flash-deal"
}'< 10ms
Edge Cloudflare Handoff
99.99%
Enterprise SLA Standard
100%
Apple ATT & Sandbox
Everything you need to know about REST API & Webhooks.
Authenticate requests using your Organization API Secret Key via Bearer token authorization headers.
By default, production API keys support 1,000 requests per minute with automatic burst capacity for enterprise accounts.
Whenever a click, install, or conversion occurs, WilderLinks dispatches an HTTP POST payload to your registered webhook URL.
Yes, every webhook request includes a X-WilderLinks-Signature header generated using your webhook secret for payload validation.
Yes! You can export our OpenAPI 3.0 specification or import our official Postman collection from your developer settings.
Deploy WilderLinks in under 5 minutes with zero vendor lock-in.