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=%3Cstring%3E&url=%3Cstring%3E&domain=%3Cstring%3E&custom_slug=%3Cstring%3E&title=%3Cstring%3E&json=true"

OK

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