Developers
Getting Started
S.EE REST API for creating, managing, and tracking short URLs
Overview
The S.EE API lets you programmatically create and manage short links. Use it to:
- Create short links at scale
- Manage custom domains
- Retrieve analytics data
- Integrate link shortening into your applications
Getting Started
Prerequisites
- A S.EE account with an active plan
- An API access token
Authentication
All API requests require an access token in the Authorization header:
Authorization: Bearer YOUR_ACCESS_TOKENBase URL
https://s.ee/api/v1Example Request
curl -X POST "https://s.ee/api/v1/shorten" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"target_url": "https://example.com/very-long-url",
"domain": "s.ee",
"custom_slug": "my-link"
}'