API Reference
Delete Short URL
This API allows you to delete a short link by providing the domain and slug.
Header Parameters
Authorization*string
API key
Request Body
application/json
request
domain*string
domain is the domain name
Default
"s.ee"Length
length <= 255slug*string
slug is the short URL slug
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": "s.ee", "slug": "string" }'{
"code": 0,
"data": {
"tags": [
{
"id": 0,
"name": "string"
}
]
},
"message": "string"
}