Recipes
Search All My Recipes
GET
https://api.brewersfriend.com/v1/recipes
This endpoint allows you to get your recipes.
Query Parameters
Name | Type | Description |
---|---|---|
ingredients | boolean | Defaults to false (with a max limit of 20 when requesting ingredients) |
id | string | Recipe ID |
author | string | Author Name |
group_id | string | Group ID |
brewer_author_id | string | Brewer Author ID |
sort | string | created_at, updated_at or title Formatted: created_at:1 for ASC and created_at:-1 for DESC |
id | number | Recipe id |
folder_id | number | Recipe folder id |
keyword | string | Searches recipe name, ingredient name, notes and style. |
updated_from | string | Recipes updated date start in the format YYYY-MM-DD |
updated_to | string | Recipes updated date end in the format YYYY-MM-DD |
created_from | string | Recipes created date start in the format YYYY-MM-DD |
created_to | string | Recipes created date end in the format YYYY-MM-DD |
snapshots | boolean | Recipe snapshots |
limit | number | Defaults to 20 with a max of 100 (unless getting ingredients then remains at 20 max) |
offset | number | Defaults to 0 |
Headers
Name | Type | Description |
---|---|---|
X-API-KEY | string | Your API key. |
Get One Recipe
GET
https://api.brewersfriend.com/v1/recipes/:recipe_id
This endpoint allows you to get one recipe, you can also get one recipe in BeerXML.
Path Parameters
Name | Type | Description |
---|---|---|
recipe_id | number | Recipe id |
Headers
Name | Type | Description |
---|---|---|
X-API-KEY | string | Your API key. |
Get Recipe Photos
GET
https://api.brewersfriend.com/v1/recipes/:recipe_id/photos
This endpoint allows you to get recipe photos.
Path Parameters
Name | Type | Description |
---|---|---|
recipe_id | number | Recipe id |
Headers
Name | Type | Description |
---|---|---|
X-API-KEY | string | Your API key. |
Get One Recipe Photo
GET
https://api.brewersfriend.com/v1/recipes/:recipe_id/photo
This endpoint allows you to get recipe photos.
Path Parameters
Name | Type | Description |
---|---|---|
uuid | string | Returned in the photos endpoint |
recipe_id | number | Recipe id |
Query Parameters
Name | Type | Description |
---|---|---|
width | number | Width of the returned image |
height | number | Height of the returned image |
scale | number | Scale the image size 0 - 100 |
bestfit | boolean | Requires width and height params |
crop | boolean | Requires width and height params |
Last updated