app.bivri.feed.getTagArtworks

lexicons.bivri.app

Documentation

main query

No description available.

Parameters

cursor string Optional

Opaque pagination cursor. Pass it back unchanged on the next request.

limit integer Optional

No description available.

sort string Optional

Ordering of the returned artworks. 'latest' is reverse-chronological; 'popular' is by like count.

tag string Required

Tag to list artworks for.

Output

Encodingapplication/json
artworks array Required

No description available.

cursor string Optional

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
Opaque pagination cursor. Pass it back unchanged on the next request.
Ordering of the returned artworks. 'latest' is reverse-chronological; 'popular' is by like count.
Tag to list artworks for.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "artworks"
      ],
      "properties": {
        "cursor": {
          "type": "string"
        },
        "artworks": {
          "type": "array",
          "items": {
            "ref": "app.bivri.feed.defs#artworkView",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "tag"
    ],
    "properties": {
      "tag": {
        "type": "string",
        "description": "Tag to list artworks for."
      },
      "sort": {
        "type": "string",
        "default": "latest",
        "description": "Ordering of the returned artworks. 'latest' is reverse-chronological; 'popular' is by like count.",
        "knownValues": [
          "latest",
          "popular"
        ]
      },
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string",
        "description": "Opaque pagination cursor. Pass it back unchanged on the next request."
      }
    }
  }
}

Lexicon Garden

@