API Reference
Delete Short URL
Permanently deletes a short URL. This action cannot be undone. The slug will become available for reuse after deletion.
Header Parameters
Authorization*string
Your API key
Request Body
application/json
Short URL identification
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 delete (e.g., "abc123")
Length
length <= 255Response Body
application/json
curl -X DELETE "https://s.ee/api/v1/shorten" \ -H "Authorization: string" \ -H "Content-Type: application/json" \ -d '{ "domain": "string", "slug": "string" }'{
"code": 0,
"data": {
"code": 0,
"data": {
"tags": [
{
"id": 0,
"name": "string"
}
]
},
"message": "string"
},
"message": "string"
}Update Short URL PUT
Updates the destination URL and/or title of an existing short URL. The domain and slug identify which link to update.
Get Available Domains for Short URLs GET
Returns a list of all domains available for creating short URLs with your account. Use these domain values when calling the Create Short URL endpoint.