Tag suggestions

GET/tags/master

Returns the curated tag candidates. Use them to suggest values in tag inputs such as the skill tags on a profile. Sorted by `order` ascending, then by name.

AuthNot required

Query parameters

entitystringrequired

Entity type (user | event | community).

categorystring

Filter by category (for user: industry | skill | hobby).

qstring

Filter by partial match on name / nameJa.

Response

FieldTypeDescription
tagMastersobject[]Array of { id, name, nameJa, entity, category, order }. Store the canonical `name`; prefer `nameJa` for display in Japanese.
Request
curl https://api.4s.link/tags/master \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"tagMasters": [
{
"id": "t1a2b3c4-...",
"name": "React",
"nameJa": null,
"entity": "user",
"category": "skill",
"order": 10
}
]
}