S.EE Docs
API Reference

Get Tags

This API allows you to get all available tags for the authenticated user.

GET
/api/v1/tags

Header Parameters

Authorization*string

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