app.bivri.feed.getDiscoveryArtworks

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.

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.
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",
    "properties": {
      "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

@