/Axonify-The-Secrect-Messenging-API

A simple API where you can send messages to anyone anonymously.

Primary LanguageJavaScript

Untitled design (3)

Axonify : The Secret Messenging API

  • A simple API where you can send messages to anyone anonymously.

Endpoints

Getting API key

  • User will be provided with two keys, a public and a private key
  • Private key will be used to send and recieve messages
  • Public key will be used to determine the reciever. You can broadcast your public key to recieve messages.
  POST https://axonify.azurewebsites.net/user/new

Body (json) :

Parameter Type Description
email string Required

response

{
  "message": "Account created successflly, Please check your email for api key" 
}

Sending Messages:

  POST https://axonify.azurewebsites.net/msg/new

Body (json) :

Parameter Type Description
sKey string Required , Sender's private key
rKey string Required , Receiver's public key
message string Required , Message

response

{
    message: "Message sent successfully"
}

Viewing Messages

  GET https://axonify.azurewebsites.net/msg/view

Body (json) :

Parameter Type Description
priKey string Required , Your private key

response

{
  "message": "1 New Messages",
  "data": [
    {
      "msg": "hello world"
    }
  ]
}

Support

For any issue or query I'll love to hear at : developer.authify@gmail.com

We love contributions ❤️
Contribute to this api here

Contact Me