S.EE Docs
Developers

SM.MS Compatibility

Migrate from SM.MS to S.EE with minimal code changes

S.EE provides a SM.MS-compatible API layer, allowing you to migrate from SM.MS to S.EE with minimal code changes. Simply replace the API endpoint and you're ready to go.

Quick Migration

Replace the SM.MS API base URL with the S.EE equivalent:

SM.MSS.EE
https://sm.ms/api/v2https://s.ee/api/v1/file

Supported Endpoint

SM.MS EndpointS.EE EndpointDescription
POST /api/v2/uploadPOST /api/v1/file/uploadUpload image
GET /api/v2/upload_historyGET /api/v1/filesGet upload history

Upload Image

Request

curl -X POST "https://s.ee/api/v1/file/upload" \
  -H "Authorization: your-api-key" \
  -F "smfile=@/path/to/image.png" \
  -F "domain=sm.ms" \
  -F "custom_slug=my-image"

Parameters

ParameterTypeRequiredDescription
smfilefileYesThe image file to upload (alias: file)
domainstringNoCustom domain for the short link
custom_slugstringNoCustom slug for the URL (random if not provided)

Response

{
  "code": 200,
  "data": {
    "file_id": 14184137,
    "width": 1024,
    "height": 1024,
    "filename": "my-cat.jpg",
    "storename": "my-cat.jpg",
    "size": 202814,
    "path": "/2026/02/11/dm3K/my-cat.jpg",
    "hash": "delete-hash-here",
    "url": "https://i.see.you/2026/02/11/dm3K/my-cat.jpg",
    "delete": "https://s.ee/api/v1/file/delete/delete-hash-here",
    "page": "https://sm.ms/my-cat",
    "upload_status": 2
  },
  "message": "success",
  "success": true
}

Upload History

Request

curl "https://s.ee/api/v1/files" \
  -H "Authorization: your-api-key"

Parameters

ParameterTypeRequiredDescription
pageintegerNoPage number (default 1, 30 files per page)

Response

{
  "success": true,
  "code": 200,
  "message": "success",
  "data": [
    {
      "file_id": 14186122,
      "width": 1255,
      "height": 636,
      "filename": "chrome_O93NV9Z3G8.gif",
      "storename": "chrome_O93NV9Z3G8.gif",
      "size": 398517,
      "path": "/2026/02/12/5isV/chrome_O93NV9Z3G8.gif",
      "hash": "delete-hash-here",
      "url": "https://i.see.you/2026/02/12/5isV/chrome_O93NV9Z3G8.gif",
      "delete": "https://s.ee/api/v1/file/delete/delete-hash-here",
      "page": "https://sm.ms/ZS3M",
      "upload_status": 2,
      "created_at": 1770908298
    },
    {
      "file_id": 14186073,
      "width": 1272,
      "height": 644,
      "filename": "firefox_P4lBSlG15y.gif",
      "storename": "firefox_P4lBSlG15y.gif",
      "size": 802256,
      "path": "/2026/02/12/0Bmu/firefox_P4lBSlG15y.gif",
      "hash": "delete-hash-here",
      "url": "https://i.see.you/2026/02/12/0Bmu/firefox_P4lBSlG15y.gif",
      "delete": "https://s.ee/api/v1/file/delete/delete-hash-here",
      "page": "https://sm.ms/ATas",
      "upload_status": 2,
      "created_at": 1770904032
    }
  ]
}

Differences from SM.MS

While S.EE maintains compatibility with SM.MS API, there are some enhancements:

FeatureSM.MSS.EE
Custom domainNoYes
Custom slugNoYes
File size limit5MBVaries by plan
Supported formatsImages onlyImages, documents, and more

Get Your API Key

To use the S.EE API, you need an API key:

  1. Sign up or log in at s.ee
  2. Go to Tools > API Token
  3. Generate a new API key

Need Help?

If you encounter any issues during migration, please contact support or check our API documentation.

On this page