# app.didpic.feed.getTrendingTags

> Published by [lexicons.didpic.app](https://lexicon.garden/identity/did:plc:an2jtp4jgkkbtmwfzhpbxawd)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.getTrendingTags)
- [Documentation](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.getTrendingTags/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.getTrendingTags/examples)

## Definitions

### `app.didpic.feed.getTrendingTags`

**Type**: `query`

Trending hashtags. Top tags by unique-DID usage in the last 7 days, with a minimum-distinct-users threshold to keep one-off coincidences off the row. Admin-suppressed tags are excluded.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No |  |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `tags` | `array` | Yes |  |

## Raw Schema

```json
{
  "id": "app.didpic.feed.getTrendingTags",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "tags"
          ],
          "properties": {
            "tags": {
              "type": "array",
              "items": {
                "ref": "app.didpic.feed.searchTags#tagSuggestion",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "limit": {
            "type": "integer",
            "default": 10,
            "maximum": 25,
            "minimum": 1
          }
        }
      },
      "description": "Trending hashtags. Top tags by unique-DID usage in the last 7 days, with a minimum-distinct-users threshold to keep one-off coincidences off the row. Admin-suppressed tags are excluded."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
