S.EE Docs
API Reference

Delete Short URL

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

DELETE
/api/v1/shorten

Header Parameters

Authorization*string

API key

Request Body

application/json

request

domain*string

domain is the domain name

Default"s.ee"
Lengthlength <= 255
slug*string

slug is the short URL slug

Lengthlength <= 255

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