app.bivri.search.suggestTags

lexicons.bivri.app

Documentation

main query

No description available.

Parameters

limit integer Optional

Maximum number of suggestions to return.

prefix string Required

Prefix the suggested tags must start with.

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
Maximum number of suggestions to return.
Prefix the suggested tags must start with.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "tags"
      ],
      "properties": {
        "tags": {
          "type": "array",
          "items": {
            "ref": "app.bivri.search.searchArtworks#tagSuggestion",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "prefix"
    ],
    "properties": {
      "limit": {
        "type": "integer",
        "default": 10,
        "maximum": 30,
        "minimum": 1,
        "description": "Maximum number of suggestions to return."
      },
      "prefix": {
        "type": "string",
        "minLength": 1,
        "description": "Prefix the suggested tags must start with."
      }
    }
  }
}

Lexicon Garden

@