S.EE Docs
API Reference

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

signature*string

API KEY

url*string

the original URL

domain?string

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

custom_slug?string

this short url custom slug

title?string

the title of the short URL

tag_ids?array<integer>

tag IDs to associate with the short URL

password?string

password for the short URL

expire_at?integer

expiration timestamp for the short URL

json?boolean

the response is in JSON format

Response Body

application/json

curl -X GET "https://s.ee/api/v1/shorten?signature=string&url=string"
{
  "code": 0,
  "data": {
    "custom_slug": "string",
    "short_url": "string",
    "slug": "string"
  },
  "message": "string"
}