app.didpic.feed.searchTags

lexicons.didpic.app

Documentation

Search hashtags by prefix, ordered by popularity (number of distinct records using the tag).

main query

Search hashtags by prefix, ordered by popularity (number of distinct records using the tag).

Parameters

limit integer Optional

No description available.

q string Required

Tag prefix (lowercased server-side). Empty result if blank.

Output

Encodingapplication/json
tags array Required

No description available.

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
Tag prefix (lowercased server-side). Empty result if blank.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "tags"
      ],
      "properties": {
        "tags": {
          "type": "array",
          "items": {
            "ref": "#tagSuggestion",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "q"
    ],
    "properties": {
      "q": {
        "type": "string",
        "description": "Tag prefix (lowercased server-side). Empty result if blank."
      },
      "limit": {
        "type": "integer",
        "default": 10,
        "maximum": 25,
        "minimum": 1
      }
    }
  },
  "description": "Search hashtags by prefix, ordered by popularity (number of distinct records using the tag)."
}
tagSuggestion object

No description available.

Properties

postCount integer Required

Number of distinct posts + comments using this tag.

minimum: 0
tag string Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "tag",
    "postCount"
  ],
  "properties": {
    "tag": {
      "type": "string"
    },
    "postCount": {
      "type": "integer",
      "minimum": 0,
      "description": "Number of distinct posts + comments using this tag."
    }
  }
}

Lexicon Garden

@