blue.recipes.feed.getRecipes

thighhighs.moe

Documentation

Response model for fetching multiple recipes.

main query

Response model for fetching multiple recipes.

Parameters

author string at-identifier Optional

Either a DID or an AT Protocol handle.

cursor string Optional

No description available.

limit integer Optional

No description available.

Output

Encodingapplication/json
nextCursor string Required

No description available.

recipes 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
Either a DID or an AT Protocol handle.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "recipes",
        "nextCursor"
      ],
      "properties": {
        "recipes": {
          "type": "array",
          "items": {
            "ref": "blue.recipes.feed.defs#recipeView",
            "type": "ref"
          }
        },
        "nextCursor": {
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "author": {
        "type": "string",
        "format": "at-identifier"
      },
      "cursor": {
        "type": "string"
      }
    }
  },
  "description": "Response model for fetching multiple recipes."
}

Lexicon Garden

@