Short URLs are valuable for quick sharing or use in SMS campaigns where the character limit is strict
Endpoint:
POST https://s-lnk.com/api/shorten
Request Body:
Field | Required | Description |
---|---|---|
url | Yes | The original / destination URL you want your shortened link to redirect people too. |
Rate Limit: 300 requests per minute
Request:
{
"url": "https://google.com"
}
Response:
{
"status": true,
"url": "https://google.com",
"short": "https://s-lnk.com/r/abc12345"
}