• New user in mailing list
  • CRON task
  • CI Pipeline

Nimrod

Your personal
notification tool

Nimrod
  • You've got a new subscription in your mailing list.
  • Your CRON task `backup files` as completed without error
  • There was an error in your build pipeline!

Setup in less than 1 minute

Step 1 - Get your API key

Start a conversation with Nimrod on Messenger. You will receive an API_KEY.

Start conversation

Step 2 - Send your first message

With a form :

Or with code :

cURL curl -X POST -H "Content-Type: application/json" -d '{
  "api_key": "API_KEY",
  "message":"My first message"
}' "https://www.nimrod-messenger.io/api/v1/message"


jQuery

var settings = {
  "url": "https://www.nimrod-messenger.io/api/v1/message",
  "method": "POST",
  "headers": {
    "cache-control": "no-cache",
    "content-type": "application/json"
  },
  "data": JSON.stringify({
    "api_key": "YOUR API KEY",
    "message": "My First Message"
  })
};
$.ajax(settings);

Step 3 - Check Messenger

Nimrod should have sent the message on your Messenger conversation.

Bonus step - Send image

You can also send an image URL with Nimrod :

With a form :

Or with code :

cURL curl -X POST -H "Content-Type: application/json" -d '{
  "api_key": "API_KEY",
  "message":"My First Message"
}' "https://www.nimrod-messenger.io/api/v1/message"


jQuery

var settings = {
  "url": "https://www.nimrod-messenger.io/api/v1/image",
  "method": "POST",
  "headers": {
    "cache-control": "no-cache",
    "content-type": "application/json"
  },
  "data": JSON.stringify({
    "api_key": "YOUR API KEY",
    "url": "https://media.giphy.com/media/TcdpZwYDPlWXC/giphy.gif"
  })
};
$.ajax(settings);

Tools & Integrations

Follow Nimrod on Facebook

Like the Nimrod page and to get the updates and announcements.
Nimrod Messenger Page

About me

Hello, I'm xurei.
I'm a Belgian developer and productivity junkie.
I made this project to get updates from my many automated tasks.
You can learn more about my work on my Github page.