s.ee

Create Short URL using Simple Mode

This API allows you to create a short link by providing the original URL. This API is used for simple mode. The response can be plain text.

GET
/api/v1/shorten

Query Parameters

signatureRequiredstring

API KEY

urlRequiredstring

the original URL

domainstring

this short url domain, omit this parameter to use the default domain

custom_slugstring

this short url custom slug

titlestring

the title of the short URL

jsonboolean

the response is in JSON format

curl -X GET "https://s.ee/api/v1/shorten?signature=YOUR_API_KEY&url=url&domain=s.ee&custom_slug=my-custom-slug&title=My+Short+URL&json=true"

OK

{
  "code": 0,
  "data": {
    "custom_slug": "string",
    "short_url": "string",
    "slug": "string"
  },
  "message": "string"
}