URL shortener

URL shortener is a free services to provide your users a quick
shorter version of URL that will redirect to you desired destination.

Use our free API to generate as many short URLs as you need.
No account required.

Short URLs are valuable for quick sharing or use in SMS campaigns where the character limit is strict

Simple API

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

Example

Request:

{
    "url": "https://google.com"
}

Response:

{
    "status": true,
    "url": "https://google.com",
    "short": "https://s-lnk.com/r/abc12345"
}