logo

Welcome to MealForge

"MealForge is an intuitive recipe API service that helps developers easily integrate recipes and ingredient search into their apps."

Trending

Popular Tags

  • ground-beef
  • indian
  • american
  • pork-chops
  • vegan
  • non-vegetarian
  • vegetarian

Easy to Integrate

Python
import requests url = "https://mealforge.vercel.app/api" headers = { "Content-Type": "application/json", "x-api-key": "<your_api_key>" } data = { "key": "value" } response = requests.post(url, json=data, headers=headers) print(response.json())
Curl
curl -X POST https://mealforge.vercel.app/api \ -H "Content-Type: application/json" \ -H "x-api-key: <your_api_key>" \ -d '{ "key": "value" }'
React
import React, { useEffect, useState } from "react"; function App() { const [data, setData] = useState(""); useEffect(() => { fetch("https://mealforge.vercel.app/api", { method: "POST", headers: { "Content-Type": "application/json", "x-api-key": "<your_api_key>", }, body: JSON.stringify({ key: "value", }), }) .then((response) => response.json()) .then(setData) .catch(console.error); }, []); return <div>{JSON.stringify(data)}</div>; } export default App;

Get Recipes

Integrate seamlessly with the MealForge API usingJavaScript,Python, and more to fetch recipes from a robust database of over36,000 entries, tailored for developers to create delightful culinary experiences.

Fetch recipe