Whisk Docs
Whisk HomeHelp CenterDeveloper Tools
v2.0.0
v2.0.0
  • The Whisk Platform
  • Whisk API Overview
    • Introduction
    • Integration
    • Authentication
      • Server Token
      • User Access Token
        • Auth Flow Example
      • Client Token
      • Anonymous Access from Client Apps
    • Whisk Sandbox
    • Getting Started
  • Whisk API Reference 2.0
    • Provisioning
      • Get provisioning
    • Autocomplete
    • Community
      • Get your Communities
      • Get Communities from a Topic
      • Discover Recommended Communities
      • Search Communities
      • Get a Community
      • Get Recipes from a Community
      • Add Recipes to a Community
      • Remove a Recipe from a Community
      • Join a Community
      • Leave a Community
    • Posts and Reviews
      • Get reviews for a recipe
      • Create or edit review
      • Create a Post
      • Get Post by id
      • Delete a Post
      • Edit a Post
      • Report a Post
      • Create a Post Reply
      • Get Post Replies
      • Delete a Post reply
      • Report a Post reply
      • Like a Post or Reply
      • Users who liked a Post or Reply
    • Public profiles
      • Hide recipe in Public profile
      • Get Recipes for Public Profile
      • Get User's public profile by user_id
      • Get User's public profile by username
    • Custom Label
    • Feed
      • Obtain a Recipe Feed
    • Food DB
      • Autocomplete
      • Search
      • Get Food
    • Food List
    • Food Log
    • Foodpairing
    • Healthy meal recommendations
      • Healthy recipe only recommendations for DA
      • Recipe recommendations for SH
      • Tailored Plan API request for Samsung TV
    • Meal Plan
      • Generate a Meal Plan
      • Meal Object
        • Get Meals
        • Delete Meal
        • Add a Meal
      • Meal Plan Settings Object
        • Get Meal Plan Settings
        • Update Meal Plan Settings
      • Meal Plan Batch
    • Recipe
      • Get a Recipe
      • Search a Recipe
      • User Recipes & Collections
        • Add User Recipe
        • Create A Recipe
        • Update External Recipe
        • Get All User Recipes
        • Update User Recipe
        • Remove Recipe from Favorites
        • Create Collection
        • Get All User Collections
        • Get Collection
        • Get Recipes from a Collection
        • Remove Collection
        • Get Smart Collection
        • Get Recipes from a Smart Collection
    • Shopping List
      • Get your Shopping Lists
      • Get a Shopping List
      • Create a Shopping List
      • Delete a Shopping List
      • Update basic details of a Shopping List
      • Move Items between Shopping Lists
      • Add Items to a Shopping List
      • Delete an Item from a Shopping List
      • Update an Item in a Shopping List
      • Clear Items from a Shopping List
    • Media
    • Store Item
    • Unit Conversion
    • Users
      • Get a User
      • Update User Settings using Patch
      • Update User Settings using Post
    • Try it out!
  • Shopping List SDK
    • Overview
    • Examples
      • Shoppable Recipes
      • Shoppable Products
      • Shoppable Media
    • Basic Setup
      • Basic Setup
      • Methods
      • Event Listeners
      • Widget
      • Subscriptions
      • Global Configuration
      • UTM Parameters
      • Using With SPA
  • Shopping List Mobile API
    • Overview
    • Examples
    • Reference
  • API Resources
    • Authentication Scopes
    • Errors and Troubleshooting
    • Cursor Pagination
    • Limits
    • Nutrients
    • Recipe Labels
    • Filtering Recipes using Custom Labels
    • Health Score, Glycemic Index, Glycemic Load
    • Whisk User Data
    • Integrated Retailers
    • Optimizing Image Load
    • Meal Plan
Powered by GitBook
On this page
  • Search Communities
  • Example 1 - Top 3 Oldest Vegan Communities on Whisk
  • Example 2 - Communities for Asian Cuisine containing Seafood recipes
  • Example 3 - Communities for Salad Recipes filtered by User Preferences

Was this helpful?

  1. Whisk API Reference 2.0
  2. Community

Search Communities

This endpoint allows you to search for communities using keywords and various filters.

Search Communities

GET https://api.whisk.com/community/v2/search

You can append the following query parameters to the base URL to search communities:

Query Parameters

Name
Type
Description

query

string

Keywords to match communities.

filter_diets

array

A list of available diet labels to choose from for filtering search results. You can choose one or more of these diet labels: - DIET_VEGETARIAN - DIET_VEGAN - DIET_OVO_VEGETARIAN - DIET_LACTO_VEGETARIAN - DIET_OVO_LACTO_VEGETARIAN - DIET_PESCATARIAN - DIET_KETOGENIC - DIET_DETOX - DIET_PALEO - DIET_DAIRY_FREE - DIET_GLUTEN_FREE

filters.cuisines

array

A list of available cuisine labels to choose from for filtering search results. You can choose one or more of these cuisine labels: - CUISINE_AFRICAN - CUISINE_AMERICAN - CUISINE_ASIAN - CUISINE_AUSTRALIAN - CUISINE_BRITISH - CUISINE_CAJUN_AND_CREOLE - CUISINE_CANADIAN - CUISINE_CARIBBEAN - CUISINE_CHINESE - CUISINE_CUBAN - CUISINE_EASTERN_EUROPEAN - CUISINE_EUROPEAN - CUISINE_FRENCH - CUISINE_GERMAN - CUISINE_GREEK - CUISINE_INDIAN - CUISINE_ISRAELI - CUISINE_ITALIAN - CUISINE_JAPANESE - CUISINE_KOREAN - CUISINE_LATIN_AMERICAN - CUISINE_MEDITERRANEAN - CUISINE_MEXICAN - CUISINE_MIDDLE_EASTERN - CUISINE_MOROCCAN - CUISINE_PORTUGUESE - CUISINE_SOUTHERN - CUISINE_SPANISH - CUISINE_TEX_MEX - CUISINE_THAI - CUISINE_VIETNAMESE - CUISINE_WORLD_CUISINE

filters.meal_types

array

A list of available meal type labels to choose from for filtering search results. You can choose one or more of these meal type labels: - MEAL_TYPE_APERITIF - MEAL_TYPE_APPETIZERS - MEAL_TYPE_BEVERAGES - MEAL_TYPE_BREADS - MEAL_TYPE_BREAKFAST - MEAL_TYPE_BRUNCH - MEAL_TYPE_COCKTAILS - MEAL_TYPE_CONDIMENTS_AND_SAUCES - MEAL_TYPE_DESSERTS - MEAL_TYPE_DINNER - MEAL_TYPE_JUICES - MEAL_TYPE_LUNCH - MEAL_TYPE_MAIN_COURSE - MEAL_TYPE_SALADS - MEAL_TYPE_SIDE_DISHES - MEAL_TYPE_SMOOTHIES - MEAL_TYPE_SNACKS - MEAL_TYPE_SOUPS_AND_STEWS

filters.ingredients

array

One or more ingredients to filter search results. This parameter takes each ingredient as a separate value. For example, to add butter and milk to the ingredients filter, your URL should look something like this: "https://api.whisk.com/community/v2/search?filters.ingredients=butter&filters.ingredients=milk"

filters.apply_user_preferences

boolean

Determines if the search should consider the user preferences for finding communities. When set to True, it takes user preferences like - diets, disliked ingredients, etc., into account while searching for communities and ordering the search results based on relevance.

sorting.by

string

Determines if the search results should be sorted by a particular attribute. You can use one of these available values: - SEARCH_SORT_INVALID - SEARCH_SORT_BY_NAME - SEARCH_SORT_BY_CREATED_AT

sorting.direction

string

Determines the sorting order of the search results when the sorting.by parameter is being used. You can use one of these available values: - SORTING_DIRECTION_INVALID - SORTING_DIRECTION_ASC - SORTING_DIRECTION_DESC Note: The sorting parameters can be left to their default value SEARCH_SORT_INVALID and SORTING_DIRECTION_INVALID to sort the search results based on relevance.

paging.limit

string

The maximum number of communities to retrieve.

paging.cursors.after

string

This parameter is used for cursor-based pagination. It takes a community ID as its value and performs a search on only those communities that appear after it in the database.

paging.cursors.before

string

This parameter is used for cursor-based pagination. It takes a community ID as its value and performs a search on only those communities that appear before it in the database.

fields

array

Any additional community details to retrieve. You can choose one or more of these supported values: - COMMUNITY_FIELD_DESCRIPTION - COMMUNITY_FIELD_TOPICS - COMMUNITY_FIELD_SOCIAL_SETTINGS - COMMUNITY_FIELD_PERMISSIONS - COMMUNITY_FIELD_MEMBERS_COUNT - COMMUNITY_FIELD_RECIPES_COUNT - COMMUNITY_FIELD_SPONSORED Note: For performance reasons, we recommend using this parameter only when required.

Headers

Name
Type
Description

Authentication

string

User token to authorize the API usage. For more information, see Authentication.

{
  "communities": [
    {
      "community": {
        "id": "string",
        "name": "string",
        "image": {
          "url": "string",
          "width": 0,
          "height": 0,
          "selection": {
            "x": 0,
            "y": 0,
            "width": 0,
            "height": 0
          }
        },
        "description": "string",
        "topics": [
          {
            "id": "string",
            "display_name": "string"
          }
        ],
        "social_settings": {
          "website_url": "string",
          "instagram_username": "string",
          "youtube_channel_url": "string",
          "tiktok_username": "string"
        },
        "permissions": {
          "role": "COMMUNITY_ROLE_INVALID",
          "mode": "COMMUNITY_CONTRIBUTION_PERMISSION_MODE_INVALID",
          "visibility": "COMMUNITY_VISIBILITY_INVALID"
        },
        "members": {
          "count": 0
        },
        "recipes": {
          "count": 0
        },
        "is_sponsored": true
      },
      "is_member": true
    }
  ],
  "paging": {
    "cursors": {
      "after": "string",
      "before": "string"
    },
    "total": "string"
  }
}
{
  "error_code": "REAL_CODES_ARE_IN_ENDPOINT_DESCRIPTION",
  "message": "Additional details about error are not static and can be changed"
}
{
  "code": "auth.tokenNotFound"
}
This is unexpected response, something is wrong on our side, please contact: [email protected]

Here are a few examples of communities search:

Example 1 - Top 3 Oldest Vegan Communities on Whisk

Let's assume that you need to find the top 3 oldest vegan communities on Whisk. You can find it easily using a combination of filter.diets, sorting.by, sorting.direction and paging.limit parameters. Here is how a curl request would look and the sample response you may get:

With time, the response results may differ due to the activity that may have happened on the Whisk platform.

curl -X GET "https://api.whisk.com/community/v2/search?filters.diets=DIET_VEGAN&sorting.by=SEARCH_SORT_BY_CREATED_AT&sorting.direction=SORT_DIRECTION_ASC&paging.limit=3"
    -H "Accept: application/json" 
    -H "Authorization: Bearer <YOUR-API-ACCESS-KEY>"
{
  "communities": [
    {
      "community": {
        "id": "fa204a9ef7514c80bba62f82df7075c2",
        "name": "Vegan Friendly",
        "image": {
          "url": "https://whisk-res.cloudinary.com/image/upload/v1589451153/community/6e133ad3158b0132b57adddc99b6fbf0.jpg",
          "width": 1670,
          "height": 1000
        }
      }
    },
    {
      "community": {
        "id": "ae706a9d537a498190a13162f0cce1e2",
        "name": "Our Noble Kitchen",
        "image": {
          "url": "https://whisk-res.cloudinary.com/image/upload/v1594381200/community/1767be32befdd0e53846e50bf08d37fc.jpg",
          "width": 1280,
          "height": 1280
        }
      }
    },
    {
      "community": {
        "id": "b4751be96ee148d7a66d36c5d3b6f895",
        "name": "The Yogic Diet",
        "image": {
          "url": "https://whisk-res.cloudinary.com/image/upload/v1594560620/community/fab98c92432f14360b714e45f415ac5d.jpg",
          "width": 1280,
          "height": 853
        }
      }
    }
  ],
  "paging": {
    "cursors": {
      "after": "eyJpZCI6ImI0NzUxYmU5NmVlMTQ4ZDdhNjZkMzZjNWQzYjZmODk1IiwiaW5kZXgiOjJ9"
    }
  }
}

Example 2 - Communities for Asian Cuisine containing Seafood recipes

Let's assume that you want to find communities created specifically for Asian cuisine and has Seafood recipes. Additionally, for each community found, you would like to retrieve its Description and Recipe Count. You can perform this search using the query, filters.cuisines and fields parameters. Here is how a curl request would look and the sample response you may get:

Note: With time, the response results may differ due to the activity that may have happened on the Whisk platform.

curl -X GET "https://api.whisk.com/community/v2/search?query=seafood&filters.cuisines=CUISINE_ASIAN&sorting.by=SEARCH_SORT_BY_INVALID&sorting.direction=SORT_DIRECTION_INVALID&fields=COMMUNITY_FIELD_DESCRIPTION&fields=COMMUNITY_FIELD_RECIPES_COUNT"
    -H "Accept: application/json"
    -H "Authorization: Bearer <YOUR-API-ACCESS-KEY>"
{
  "communities": [
    {
      "community": {
        "id": "375bc4135e784d6d80b5cd8b6db65ffe",
        "name": "Barramundi recipes",
        "description": "Mild tasting Asian sea bass is the perfect versatile fish to try out with these recipes",
        "recipes": {
          "count": 18
        }
      }
    },
    {
      "community": {
        "id": "c62d83682c644144989cffc8813692c4",
        "name": "Contemporary Asian",
        "description": "Vietnamese, Japanese, Malaysian and many other asian cuisine staples with a modern twist",
        "recipes": {
          "count": 20
        }
      }
    },
    {
      "community": {
        "id": "96e140fec4da4a1485e5aadcccad6808",
        "name": "The Taste Of Asia",
        "description": "Popular Asian cuisine recipes ",
        "recipes": {
          "count": 20
        }
      }
    },
    {
      "community": {
        "id": "b37ecdecb5d34990ad24a27ef6cdbeb0",
        "name": "Asian cravings",
        "image": {
          "url": "https://whisk-res.cloudinary.com/image/upload/v1611022873/community/cde7d6a5a56b843a45ac81fb28b4e299.jpg",
          "width": 1000,
          "height": 686
        },
        "recipes": {
          "count": 9
        }
      }
    },
    {
      "community": {
        "id": "013acb8e9fc84c64afedc6c770de9908",
        "name": "Xanthe’s Food Book",
        "image": {
          "url": "https://whisk-res.cloudinary.com/image/upload/v1601322812/community/1ea6efb30c8c53cd003c0c042cfff416.jpg",
          "width": 1280,
          "height": 1707
        },
        "description": "Asian, Fusion, Mediterrean and Mexican food",
        "recipes": {
          "count": 26
        }
      }
    }
  ],
  "paging": {
    "cursors": {}
  }
}

Example 3 - Communities for Salad Recipes filtered by User Preferences

Let's assume that you want to find communities created for Salad recipes containing one or more recipes that include Chicken Breast as an ingredient. Additionally, you would also like the search to consider your User Preferences while filtering communities. You can perform this search using the filters.meal_types, filters.ingredients and filters.apply_user_preferences parameters. Here is how a curl request would look and the sample response you may get:

Depending on your user preferences and time, the results in the response may differ.

curl -X GET "https://api.whisk.com/community/v2/search?filters.meal_types=MEAL_TYPE_SALADS&filters.ingredients=chicken%20breast&filters.apply_user_preferences=true&sorting.by=SEARCH_SORT_BY_INVALID&sorting.direction=SORT_DIRECTION_INVALID"
    -H "Accept: application/json" 
    -H "Authorization: Bearer <YOUR-API-ACCESS-KEY>"
{
  "communities": [
    {
      "community": {
        "id": "f986a96282e84ec4ae036420a0a2a676",
        "name": "Lebanese Cooking & Recipes",
        "image": {
          "url": "https://whisk-res.cloudinary.com/image/upload/v1610196239/community/3632afe4f7977ce76cf5012b02a834b1.jpg",
          "width": 1125,
          "height": 1317
        }
      }
    },
    {
      "community": {
        "id": "b52c6c3de979401ebd68337ef7c90538",
        "name": "21 Days of Happy Salads 🥗abbycooksdinner",
        "image": {
          "url": "https://whisk-res.cloudinary.com/image/upload/v1609904874/community/3864da8890e316330cfc67eb1d832873.jpg",
          "width": 1280,
          "height": 1405
        }
      }
    }
  ],
  "paging": {
    "cursors": {}
  }
}

PreviousDiscover Recommended CommunitiesNextGet a Community

Last updated 4 years ago

Was this helpful?

Whisk allows you to discover and understand its API capabilities on the Swagger interface with the ability to try out the API calls directly in your browser. You can call this endpoint .

Note: To understand the data structure of a community definition, see .

Whisk allows you to discover and understand its API capabilities on the Swagger interface with the ability to try out the API calls directly in your browser. You can call this endpoint .

Note: To understand the data structure of a community definition, see .

Whisk allows you to discover and understand its API capabilities on the Swagger interface with the ability to try out the API calls directly in your browser. You can call this endpoint .

Note: To understand the data structure of a community definition, see .

here
here
here
Community Object
Community Object
Community Object