Android や iOS アプリに、Parse.com で REST API 経由で Push 通知するには下記のような感じです。
curl -X POST \\
  -H "X-Parse-Application-Id: xxxxxx" \\
  -H "X-Parse-REST-API-Key: xxxxxx" \\
  -H "Content-Type: application/json" \\
  -d '{
        "where": {
          "deviceType": "ios"
        },
        "data": {
          "alert": "Hello World!"
        }
      }' \\
  https://api.parse.com/1/push
[参考]