Skip to main content
GET
/
api
/
recipes
/
featured
Featured Recipes
curl --request GET \
  --url https://api.example.com/api/recipes/featured

Authentication

Optional. If authenticated, includes isFavorited status.

Response

{
  "recentlyAdded": [
    {
      "id": "uuid",
      "title": "Kodak Portra 400 Look",
      "description": "Warm tones with lifted shadows",
      "coverImageUrl": "https://...",
      "cameraModel": "X-T5",
      "filmSimulation": "Classic Chrome",
      "favoriteCount": 42,
      "isFavorited": false,
      "createdAt": "2025-01-15T10:30:00Z",
      "author": {
        "id": "uuid",
        "username": "filmshooter",
        "avatarUrl": "https://..."
      }
    }
  ],
  "mostLiked": [...]
}
Returns up to 6 recipes in each category.