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
/api/v1/shorten

Query Parameters

key
Required
string

API KEY

url
Required
string

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?key=string&url=string&domain=string&custom_slug=string&title=string&json=true"

OK

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