S.EE Docs
API Reference

Get All Tags

Returns all tags you have created. Tags help organize your short URLs and shared texts into categories for easier management.

GET
/api/v1/tags

Header Parameters

Authorization*string

Your API key

Response Body

application/json

curl -X GET "https://s.ee/api/v1/tags" \  -H "Authorization: string"
{
  "code": 0,
  "data": {
    "tags": [
      {
        "id": 0,
        "name": "string"
      }
    ]
  },
  "message": "string"
}