API Information & Usage
Shortening a link is quite easy. simply send a POST request to https://vae.me/add, which will return JSON-safe information as shown below:

                    
                        $ curl --data "url=http://google.com" https://vae.me/add
                        {"url": "https://vae.me/27f4", "success": true}
                    
                

Password Protection

You can also password protect a link, simply by adding a password variable to the payload:

                    
                        $ curl --data 'url=https://google.com/example&encrypt=y0urp4$$w0rd' https://vae.me/add
                        {"url": "https://vae.me/abc123", "success": true}