logo WxNotify
Powerful Integrations
Connect WxNotify with your existing systems and workflows. Whether you need programmatic access via our RESTful API, want to leverage 70+ notification services through Apprise, or require location-based alerts with Traccar integration, we've got you covered.

Three Powerful Ways to Integrate

Choose the integration method that best fits your needs and technical requirements

WxNotify RESTful API

Direct programmatic access to all WxNotify features

Build custom applications and workflows with full access to WxNotify's weather notification system. Create, manage, and monitor alerts programmatically.

REST API JSON OAuth 2.0 Rate Limited

Key Features:

  • Create and manage weather alerts
  • Retrieve weather forecasts and conditions
  • Access notification history and analytics
  • Webhook support for real-time updates

Apprise API Integration

70+ notification services in one unified platform

Leverage the power of the open-source Apprise API to send notifications to virtually any service imaginable. From Discord and Slack to custom webhooks and email services.

Open Source 70+ Services Self-hosted Flexible

Supported Services:

Discord
Slack
Telegram
MS Teams
Email/SMTP
65+ more...

Traccar Integration

Location-aware weather notifications

Connect with Traccar's GPS tracking platform to create dynamic, location-aware weather alerts that follow your devices and vehicles in real-time.

GPS Tracking Real-time Geofencing Fleet Management

Use Cases:

  • Mobile weather alerts for field workers
  • Fleet management weather warnings
  • Travel route weather monitoring
  • Asset protection based on location

RESTful API Overview

Our REST API provides complete programmatic access to WxNotify's functionality. Authenticate with OAuth 2.0 and start building integrations in minutes.

Secure Authentication

OAuth 2.0 with API keys and rate limiting to ensure secure and reliable access to your weather data.

Developer Friendly

RESTful design with JSON responses, comprehensive documentation, and SDK libraries for popular languages.

Sample API Endpoints

GET
/v1/alert
Retrieve all alerts for your account
POST
/v1/alert
Create a new weather alert
GET
/v1/current_conditions/{location}
Get current weather conditions
GET
/v1/alert_log
View alert log
# Example: Create a new Alert
curl -X POST https://api.wxnotify.com/v1/alert \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"contacts": ["contact_uuid1", "contact_uuid2"],
"locations": ["location_uuid1", "location_uuid2"],
"prodlist_id": ["prodlist_uuid"],
"schedule_id": ["schedule_uuid"],
"enabled": true
}'