実際に使われているタグ
GET
/tags/usage実データに付いているタグを entity × category ごとに集計して返します。検索の絞り込み候補に使えます。
| 認証 | 不要 |
|---|
クエリパラメータ
entitystring対象の種別で絞り込み(例: event)。
categorystringカテゴリで絞り込み。
レスポンス
| フィールド | 型 | 説明 |
|---|---|---|
groups | object[] | { entity, category, tags: [{ name, count }] } の配列。 |
リクエスト
curl https://api.4s.link/tags/usage \-H "Authorization: Bearer 4s_at_..."
レスポンス例
{"groups": [{"entity": "event","category": null,"tags": [{ "name": "React", "count": 12 },{ "name": "AI", "count": 8 }]}]}