Tag suggestions
GET
/tags/masterReturns 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.
| Auth | Not required |
|---|
Query parameters
entitystringrequiredEntity type (user | event | community).
categorystringFilter by category (for user: industry | skill | hobby).
qstringFilter by partial match on name / nameJa.
Response
| Field | Type | Description |
|---|---|---|
tagMasters | object[] | 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}]}