S.EE

Delete Short URL

This API allows you to delete a short link by providing the domain and slug.

DELETE
/api/v1/shorten
/api/v1/shorten

Request Body

application/jsonRequired

request

domain
Required
string

domain is the domain name

Maximum length: 255

slug
Required
string

slug is the short URL slug

Maximum length: 255

Header Parameters

Authorization
Required
string

API key

curl -X DELETE "https://s.ee/api/v1/shorten" \
  -H "Authorization: string" \
  -H "Content-Type: application/json" \
  -d '{
    "domain": "string",
    "slug": "string"
  }'

OK

{
  "code": 0,
  "data": {
    "custom_slug": "string",
    "short_url": "string",
    "slug": "string"
  },
  "message": "string"
}