> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mrcook.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Recipe Details

> Get the details of a specific recipe.



## OpenAPI

````yaml https://www.mrcook.app/api/business/openapi.json get /v1/recipes/:recipeId
openapi: 3.1.0
info:
  title: Mr. Cook API
  version: 1.0.0
  description: API for integrating recipe generation into your products
  contact:
    email: feedback@mrcook.app
  termsOfService: https://www.mrcook.app/legal/api-terms
servers:
  - url: https://api.mrcook.app
    description: Production API
security: []
paths:
  /v1/recipes/:recipeId:
    get:
      summary: Get Recipe Details
      description: Get the details of a specific recipe.
      parameters:
        - schema:
            type: string
            description: The ID of the recipe to retrieve
            example: 018ff556-a36a-7cb8-95a1-a2ac02da3e93
          required: true
          description: The ID of the recipe to retrieve
          name: recipeId
          in: path
      responses:
        '200':
          description: Successfully retrieved recipe.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                        description: >-
                          The ID of the recipe. This can be used to generate an
                          image for the recipe.
                        example: 018ff556-a36a-7cb8-95a1-a2ac02da3e93
                      title:
                        type: string
                        description: The title of the recipe
                        example: Spicy Bacon Cheddar Cheeseburger with Pickles
                      description:
                        type: string
                        description: The description of the recipe
                        example: >-
                          Add a spicy kick to the classic American cheeseburger
                          by introducing some heat to the flavors. This burger
                          features a juicy beef patty with a melted cheddar
                          cheese and crispy bacon, combined with a spicy twist
                          to elevate the taste.
                      servings:
                        type: string
                        description: Servings
                        example: 4 servings
                      preparationTime:
                        type: number
                        description: The preparation time of the recipe in minutes
                        example: 15
                      cookingTime:
                        type: number
                        description: The cooking time of the recipe in minutes
                        example: 15
                      cuisine:
                        type: string
                        description: The cuisine of the recipe
                        example: American
                      ingredients:
                        type: array
                        items:
                          type: string
                        description: List of ingredients with quantity
                        example:
                          - 500 grams ground beef
                          - 4 slices bacon
                          - 4 slices cheddar cheese
                          - 4 hamburger buns
                          - 4 tablespoons mayonnaise
                          - 4 leaves lettuce
                          - 1 tomato, sliced
                          - 8 slices pickles
                          - ...
                      instructions:
                        type: array
                        items:
                          type: string
                        description: List of instructions for the recipe
                        example:
                          - >-
                            Season the ground beef with salt, pepper, and
                            cayenne pepper or hot sauce. Mix well until evenly
                            distributed.
                          - >-
                            Form the beef into 4 patties, slightly larger than
                            the buns.
                          - ...
                          - Cover with the top bun and serve immediately.
                      language:
                        type: string
                        enum:
                          - en
                          - de
                          - es
                          - fr
                          - pt-BR
                          - ru
                          - nl
                          - it
                          - nb
                          - sv
                          - tr
                          - da
                        default: en
                        description: The language of the recipe
                        example: en
                    required:
                      - id
                      - title
                      - ingredients
                      - instructions
                required:
                  - success
                  - data
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: 'How to get your API key: https://docs.mrcook.app/business-api/api-key'

````