Axonify : The Secret Messenging API
- A simple API where you can send messages to anyone anonymously.
- User will be provided with two keys, a public and a private key
- Private key will be used to send and view 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
Parameter |
Type |
Description |
email |
string |
Required |
{
"message": "Account created successflly, Please check your email for api key"
}
POST https://axonify.azurewebsites.net/msg/new
Parameter |
Type |
Description |
sKey |
string |
Required , Sender's private key |
rKey |
string |
Required , Receiver's public key |
message |
string |
Required , Message |
{
message: "Message sent successfully"
}
GET https://axonify.azurewebsites.net/msg/view
Parameter |
Type |
Description |
priKey |
string |
Required , Your private key |
{
"message": "1 New Messages",
"data": [
{
"msg": "hello world"
}
]
}
For any issue or query I'll love to hear at : developer.authify@gmail.com
We love contributions ❤️
Contribute to this api here