General API Information

Schema

All API access is over HTTP and starts with

https://www.appnotifications.com/:format

where :format is one of ‘json’ or ‘xml’, specifying what the response data should be formatted in. For all of the rest of this documentation, we will be leaving off that part, since it is the same for every API call.

Authentication

If you need to deliver notifications to yourself, simply pass user_credentials to any URL, you can find your user_credentials at http://www.appnotifications.com/account/edit. Never share your user_credentials with anyone, it would allow them to delete your account, view your informations, etc.

If you need to deliver notifications to other users, please use oauth.

$ curl 'https://www.appnotifications.com/account/feeds.json?user_credentials=YOUR_CREDENTIALS' | jsonpretty
{
  "count": 564,
  "rss_feeds": [
    {
      "name": "TUAW",
      "sent": true,
      "title": "TUAW",
      "updated_at": "2011/09/08 22:31:27 +0000",
      "message_level": 0,
      "paid": true,
      "id": 4777,
      "website": "http://www.tuaw.com",
      "rss_icon": "http://www.blogsmithmedia.com/www.tuaw.com/media/apple-touch-icon-v2.png",
      "sound": "R",
      "feed": "http://www.tuaw.com/rss.xml"
    },
    {
      "name": "TC",
      "title": "TechCrunch",
      "updated_at": "2011/09/08 22:42:26 +0000",
      "message_level": 0,
      "paid": true,
      "id": 4778,
      "push": true,
      "website": "http://techcrunch.com",
      "rss_icon": "http://techcrunch.com/apple-touch-icon.png",
      "sound": "37.caf",
      "feed": "http://feedproxy.google.com/TechCrunch"
    }
}

Secure Access

You can only access API through HTTPS.