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": {
"tags": [
{
"id": 0,
"name": "string"
}
]
},
"message": "string"
}Create Text Sharing POST
Creates a shareable text snippet with a unique URL. Perfect for sharing code, notes, or any text content. Supports plain text, source code (with syntax highlighting), and Markdown formatting.
Delete Text Sharing DELETE
Permanently deletes a text sharing. This action cannot be undone. The slug will become available for reuse after deletion.