AppNotify is a RESTful API that allows easy use of the Apple Push Notification Service (APNS). This core section of the API is everything you need to be able to send push notifications to devices. There are two types of resources: Devices (mapped by /) and Groups (mapped by /group/). Devices represent physical devices that can receive messages, while Groups represent associations of devices. Groups exist for the sole purpose of ease-of-messaging and can be considered a modern version of mailing lists. Devices can be added and removed from a group at any time.
Our API server is located at api.appnotify.com. If you're using HTTP, you send your messages to http://api.appnotify.com. If you're using HTTPS, send your messages to https://api.appnotify.com. As a quick example, to invoke the push API call over HTTPS the url would be https://api.appnotify.com/push.

