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

Authentication

Optional. If authenticated, includes isFavorited status.

Response

{
  "collections": [
    {
      "id": "uuid",
      "name": "Street Photography Recipes",
      "description": "Best recipes for urban shooting",
      "user_id": "uuid",
      "author_username": "curator",
      "author_avatar": "https://...",
      "recipe_count": 12,
      "favorite_count": 35,
      "is_public": true,
      "is_favorited": false,
      "created_at": "2025-01-15T10:30:00Z"
    }
  ]
}
Returns up to 6 collections, ordered by favorite_count descending, filtered to collections with at least one recipe.