API Reference
Update Short URL
Updates the destination URL and/or title of an existing short URL. The domain and slug identify which link to update.
Header Parameters
Authorization*string
Your API key
Request Body
application/json
Updated short URL details
domain*string
The domain where the short URL is hosted (e.g., "s.ee")
Length
length <= 255slug*string
The slug of the short URL to update (e.g., "abc123")
Length
length <= 255target_url*string
The new destination URL
Length
length <= 2000title*string
The new title for this short link
Length
length <= 255Response Body
application/json
curl -X PUT "https://s.ee/api/v1/shorten" \ -H "Authorization: string" \ -H "Content-Type: application/json" \ -d '{ "domain": "string", "slug": "string", "target_url": "string", "title": "string" }'{
"code": 0,
"data": {
"tags": [
{
"id": 0,
"name": "string"
}
]
},
"message": "string"
}Get Available Domains for Text Sharing GET
Returns a list of all domains available for creating text sharing URLs with your account. Use these domain values when calling the Create Text Sharing endpoint.
Update Text Sharing PUT
Updates the content and/or title of an existing text sharing. The domain and slug identify which text to update.