# Recipes

## Get Recipes

<mark style="color:green;">`POST`</mark> `https://www.brewersfriend.com/homebrew/api/201309/myrecipes`

This endpoint return your recipes in JSON format.

#### Headers

| Name         | Type   | Description                       |
| ------------ | ------ | --------------------------------- |
| Content-Type | string | application/x-www-form-urlencoded |

#### Request Body

| Name       | Type   | Description                                    |
| ---------- | ------ | ---------------------------------------------- |
| api\_key   | string | Your API key found in the Account section.     |
| api\_email | string | Your Login email found in the Account section. |

{% tabs %}
{% tab title="200 Cake successfully retrieved." %}

```javascript
{
    "recipes": [
        {
            "recipe": {
                ...
            }
        }
    ]
}
```

{% endtab %}
{% endtabs %}
