# Get trending tags for a scope

Returns trending tags within the specified scope with optional sorting and pagination. Tags blocked by scope policy are filtered out. No authentication required.

Endpoint: GET /api/v1/tags/trending
Version: 1.0
Security: 

## Query parameters:

  - `limit` (integer,null)
    Max results

  - `offset` (integer,null)
    Offset for pagination

  - `scope` (string, required)
    Scope id: 'global' or TypeId

  - `sortBy` (string,null)
    Sort by field: 'uses' (default) or 'date' (tag created_at)

  - `sortOrder` (string,null)
    Sort order: ASC or DESC

## Response 200 fields (application/json):

  - `name` (string, required)

  - `totalUses` (integer,null)

  - `history` (array,null)

  - `history.uses` (integer, required)

  - `history.date` (string, required)
    Example: "2022-03-10"


