- Article
- Collection
- Gets a recipe collection. A recipe collection is a curated set of recipes.GET
- Gets a recipe collection metadata. A recipe collection is a curated set of recipes.GET
- Get the list of current, seasonal recipe collections. From here, you can use the /collection/{id} endpoint to retrieve the recipes in those collections.GET
- GroceryList
- Delete all the items on a grocery list; faster operation than a sync with deleted items.
- Get the user's grocery list. User is determined by Basic Authentication.
- Clears the checked lines.
- Departmentalize a list of strings -- used for ad-hoc grocery list item addition
- Add a single line item to the grocery list
- /grocerylist/item/{guid} DELETE will delete this item assuming you own it.
- Update a grocery item by GUID
- Add a single line item to the grocery list
- Add a Recipe to the grocery list. In the request data, pass in recipeId, scale (scale=1.0 says to keep the recipe the same size as originally posted), markAsPending (true/false) to indicate that the lines in the recipe should be marked in a
- Synchronize the grocery list. Call this with a POST to /grocerylist/sync
- Images
- POST: /image/avatar Testing with Postman (validated 11/20/2015): 1) Remove the Content-Type header; add authentication information 2) On the request, click Body and choose "form-data", then add a line
- Gets the pending by user.
- POST: /recipe/{recipeId}/image?lat=42&lng=21&caption=this%20is%20my%20caption Note that caption, lng and lat are all optional, but must go on the request URI as params because this endpoint needs a multip
- Get all the images for a recipe. DEPRECATED. Please use /recipe/{recipeId}/photos.
- Get all the photos for a recipe
- Gets a list of RecipeScan images for the recipe. There will be at most 3 per recipe.
- Me
- Recipe
- Add a new recipePOST
- Update a recipePUT
- Given a query, return recipe titles starting with query. Query must be at least 3 chars in length.GET
- Automatics the complete all recipes.GET
- Automatics the complete my recipes.GET
- Get a list of recipe categories (the ID field can be used for include_cat in search parameters)GET
- Returns last active recipe for the userGET
- Gets recipe single step as textPOST
- Returns stored step number and number of steps in recipePOST
- Stores recipe step number and returns saved step dataPOST
- POST an image as a new RecipeScan request 1) Fetch the filename -- DONE 2) Copy it to the pics/scan folder - ENSURE NO NAMING COLLISIONS -- DONE 3) Create 120 thumbnail size in pics/scan/120 -- DONE POST
- Return full Recipe detail with steps. Returns 403 if the recipe is owned by someone else.GET
- Delete a Recipe (you must be authenticated as an owner of the recipe)DELETE
- Return full Recipe detail. Returns 403 if the recipe is owned by someone else.GET
- Zaps the recipe.GET
- Feedback on a Recipe -- for internal BigOven editorsPOST
- Get recipes related to the given recipeIdGET
- Search for recipes. There are many parameters that you can apply. Starting with the most common, use title_kw to search within a title. Use any_kw to search across the entire recipe. If you'd like to limit by course, set the paraGET
- Get a random, home-page-quality Recipe.GET
- Get the recipe/comment tuples for those recipes with 4 or 5 star ratingsGET
- Get a list of recipes that the authenticated user has most recently viewedGET
- Search for recipes. There are many parameters that you can apply. Starting with the most common, use title_kw to search within a title. Use any_kw to search across the entire recipe. If you'd like to limit by course, set the paraGET
- Same as GET recipe but also includes the recipe videos (if any)GET
- Review
- DELETE a reply to a given review. Authenticated user must be the one who originally posted the reply.
- Update (PUT) a reply to a given review. Authenticated user must be the original one that posted the reply.
- Get a given review by string-style ID. This will return a payload with FeaturedReply, ReplyCount. Recommended display is to list top-level reviews with one featured reply underneath. Currently, the FeaturedReply is the most rece
- Update a given top-level review.
- Get a paged list of replies for a given review.
- POST a reply to a given review. The date will be set by server. Note that replies no longer have star ratings, only top-level reviews do.
- Get *my* review for the recipe {recipeId}, where "me" is determined by standard authentication headers
- Add a new review. Only one review can be provided per {userId, recipeId} pair. Otherwise your review will be updated.
- DEPRECATED! - Deletes a review by recipeId and reviewId. Please use recipe/review/{reviewId} instead.
- Get a given review - DEPRECATED. See recipe/review/{reviewId} for the current usage. Beginning in January 2017, BigOven moded from an integer-based ID system to a GUID-style string-based ID system for reviews and replies. We are
- HTTP PUT (update) a recipe review. DEPRECATED. Please see recipe/review/{reviewId} PUT for the new endpoint. We are moving to a string-based primary key system, no longer integers, for reviews and replies.
- Get paged list of reviews for a recipe. Each review will have at most one FeaturedReply, as well as a ReplyCount.
- Note
Returns last active recipe for the user
GET
/recipe/get/active/recipe
Recipe
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api2.bigoven.com/recipe/get/active/recipe?userName='
Response Response Example
{
"Data": {},
"Message": "string",
"StatusCode": 0
}
Request
Query Params
userName
string
required
Responses
🟢200OK
application/json
Body
Data
object (System.Object)
optional
Message
string
optional
StatusCode
integer <int32>
optional
Modified at 2023-08-15 06:02:32