S.EE Docs
API Reference

Create Short URL (Simple Mode)

A simplified way to create short URLs using query parameters instead of a JSON body. Ideal for quick integrations, bookmarklets, or when you need a plain text response. Set json=true for JSON response format.

GET
/api/v1/shorten

Query Parameters

signature*string

Your API key

url*string

The destination URL to shorten (required)

domain?string

Domain for the short URL (optional, uses default if omitted)

custom_slug?string

Your preferred custom slug (optional)

title?string

A descriptive title for this link (optional)

tag_ids?array<integer>

Tag IDs to categorize this link (optional)

password?string

Password to protect this link (optional)

expire_at?integer

Unix timestamp when this link should expire (optional)

json?boolean

Set to true to receive JSON response instead of plain text

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"
}