PNDK.me

Link shortener without all the bullshit

Shorten link via API

Just make POST request to https://pndk.me/v1/shorten with following JSON payload, max 5 links each request.
{
  "urls": [
    "http://example.com/very-very-very-long-link",
    "https://example.com/another-very-very-very-long-link"
  ]
}
        
Example response
{
  "data": [
    {
      "old_url": "http://example.com/very-very-very-long-link",
      "new_url": "https://pndk.me/u86u9a"
    },
    {
      "old_url": "https://example.com/another-very-very-very-long-link",
      "new_url": "https://pndk.me/593hi3"
    }
  ]
}
          
Want more features? shout to dilucean@gmail.com
Made with 😭 by Dilucean