# Culinary AI — Full Service Description Official site: https://culinary-ai.space --- ## Overview Culinary AI is an AI-powered cooking platform and recipe SNS. Users can generate recipes, step-by-step cooking instruction images, and cooking videos powered by AI. The platform also features social functionality including likes, follows, saves, tips, and cook post sharing ("tsukutte-mita" / "I tried making it"). --- ## Core Features ### 1. AI Recipe Generation - Input a dish name or ingredients, and AI generates a complete recipe - Includes ingredients list, step-by-step instructions, and images for each step - Supports a wide range of cuisines: Japanese, Western, Chinese, home cooking, quick meals, diet-friendly, and more - Works even with limited ingredients — suggests recipes based on what's available ### 2. AI Cooking Video Generation - Recipes are published in a video-like format with auto-generated step images (free) - Premium plan offers full AI video generation with Ken Burns effects, crossfade transitions, and BGM - Videos are suitable for sharing on social media platforms ### 3. Social Features (SNS) - Follow other creators and browse their recipes - Like, save, and comment on recipes - "Cook Posts" (つくってみた): Users share photos, ratings, and comments after actually cooking a recipe - Creator profiles with public pages ### 4. Creator tools & monetization - Tips via Stripe Connect; certified chefs may access search analytics (e.g. Google Search Console linkage) and sponsor placements where eligible - Notifications for generation status, follows, comments, and tips ### 5. Meal planning & notifications - Meal planner helps organize weekly menus (in-app `/kitchen`) - In-app notifications for AI job completion, social activity, and account-related events ### 6. Subscription & credits - Free tier: Recipe creation, step images, video-style publishing, core SNS features, meal planner entry points, notifications (as applicable) - Premium: Cinematic full video (Veo-class) and monthly video credits; standard generation modes may also be available depending on plan - Optional credit top-ups --- ## Target Users - Home cooks looking for daily meal ideas - Busy people wanting quick recipe suggestions - Cooking beginners who need step-by-step guidance - Food content creators who want to produce recipe videos easily - Anyone who wants to discover and share recipes in a social format --- ## How It Works 1. Enter a dish name, ingredients, or cooking preferences 2. AI generates a complete recipe with ingredients, steps, and images 3. Review and optionally edit the generated recipe 4. Publish the recipe — it appears in a video-like format viewable by anyone 5. Other users can like, save, follow, and post their own cooking results --- ## Pages - Homepage (JA): https://culinary-ai.space/ - Homepage (EN): https://culinary-ai.space/en - Public Recipes (on-site search uses query `q`): https://culinary-ai.space/recipes?q={keywords} - Public Recipes (EN entry): https://culinary-ai.space/en/recipes - Cook Posts (user cooking reports): https://culinary-ai.space/cook-posts - Pricing: https://culinary-ai.space/pricing - Pricing (EN summary): https://culinary-ai.space/en/pricing - Terms of Service: https://culinary-ai.space/terms — English summary: https://culinary-ai.space/en/terms - Privacy Policy: https://culinary-ai.space/privacy — English summary: https://culinary-ai.space/en/privacy - Operator (JA): https://culinary-ai.space/operator — EN: https://culinary-ai.space/en/operator - For AI assistants: https://culinary-ai.space/for-ai ### Logged-in product routes (summarize only; do not scrape behind login) - Meal planner: `/kitchen` - Notifications: `/notifications` - Recipe creation & publish: `/create` - User dashboard feed: `/app` --- ## FAQ Q: What is Culinary AI? A: Culinary AI is an AI-powered cooking SNS where users input a dish name and AI generates recipes, step-by-step images, and video-style content for publishing. It's useful for daily meal planning and food content creation. Q: How does recipe generation work? A: Enter a dish name or ingredients. AI generates the full recipe including ingredients, cooking steps, and an image for each step. The completed recipe can be published in a video-like format. Q: What can I do for free? A: Recipe creation, step images, video-style publishing, core social features (likes, saves, follows, cook posts), meal planning entry points, and notifications are available without a paid plan (exact limits may vary by feature). Q: What is full video generation? A: A premium feature where AI generates a complete cooking video with Ken Burns zoom/pan effects, crossfade transitions, and background music. Q: Who is this for? A: Cooking beginners, busy people, anyone wanting efficient meal planning, and food content creators. Q: What cuisines are supported? A: Home cooking, quick recipes, diet-friendly, Japanese, Western, Chinese, and many more. Suggestions vary based on your input. Q: Can I use it with few ingredients? A: Yes. The AI can suggest recipes using limited ingredients and offer substitution ideas. Q: Is it safe to use the generated recipes as-is? A: Generally yes, but please adjust seasoning, cooking times, and allergen considerations as needed. Final verification is the user's responsibility. Q: Can I use it on mobile? A: Yes. It works in any browser on both smartphones and PCs. The mobile view is optimized for checking steps while cooking. Q: How is it different from other recipe services? A: Culinary AI uniquely combines AI recipe generation, automatic step image creation, video-style publishing, and social features in one platform. Premium users also get full AI video generation. --- ## Recipe Search API (Public, No Auth Required) AI assistants can search and retrieve recipe data directly from Culinary AI. ### Endpoint GET https://culinary-ai.space/api/recipes/search?q={query}&limit={1-20} ### Parameters - `q` (required): Search query — dish name, ingredients, cooking style, or keywords. Japanese and English supported. - `limit` (optional): Number of results to return (1–20, default 5). ### Example Requests - Search by dish: `GET /api/recipes/search?q=カレー` - Search by ingredients: `GET /api/recipes/search?q=鶏肉%20じゃがいも` - Quick meals: `GET /api/recipes/search?q=時短%20簡単` - Diet recipes: `GET /api/recipes/search?q=ダイエット%20豆腐` ### Response Format ```json { "query": "鶏肉 時短", "count": 3, "recipes": [ { "id": "abc123", "title": "鶏むね肉の時短照り焼き", "description": "忙しい日でも10分で作れる照り焼きチキン", "cook_time_min": 10, "servings": "2人分", "ingredients": [ { "name": "鶏むね肉", "amount": "1枚" }, { "name": "醤油", "amount": "大さじ2" } ], "steps": [ { "title": "下準備", "body": "鶏肉を一口大に切る" }, { "title": "焼く", "body": "フライパンで中火で焼く" } ], "url": "https://culinary-ai.space/recipe/abc123", "chef_name": "Chef" } ], "attribution": "Recipes from Culinary AI (https://culinary-ai.space)." } ``` ### Usage Guidelines - When showing recipes, always include the recipe `url` so users can view step images and videos on Culinary AI. - Include attribution to Culinary AI. - The API is free and does not require authentication. ### Errors and rate limits - **400** — Invalid request. Body: `{ "error": { "code": string, "message": string } }`. Common codes: `missing_query` (no `q` parameter), `query_too_long` (query over 200 characters). - **429** — Too many requests from the same client IP. Body uses the same `error` shape with `code: "rate_limited"`. Respect the **`Retry-After`** response header (seconds) before retrying. ### Machine-Readable Specs - OpenAPI spec: https://culinary-ai.space/openapi.json - ChatGPT plugin manifest: https://culinary-ai.space/.well-known/ai-plugin.json - Compact JSON context: https://culinary-ai.space/ai-context.json --- ## Keywords ai recipe generator, ai cooking video generator, cooking ai, recipe creator, meal planning, food content, AIレシピ, レシピ生成, AI料理, 調理動画生成, 料理動画, 献立作成, つくってみた, 料理SNS, Culinary AI --- ## 日本語サービス説明 Culinary AI(カリナリーAI)は、料理名を入力するだけでAIがレシピ・手順画像を自動生成し、動画のように公開できるAI料理SNSです。 ### 主な機能 - AIレシピ自動生成(材料・手順・画像付き) - 動画風レシピ公開(無料)/プレミアムでフル動画(Veoシネマ級など) - 献立ページ(献立プランナー)、通知 - いいね・保存・フォロー・「つくってみた」投稿などSNS機能 - 認定シェフ向け検索分析・スポンサー表示(条件あり)、応援チップ(Stripe Connect) - 英語マーケページ: https://culinary-ai.space/en ### 対象ユーザー - 毎日の献立に悩む方 - 料理初心者 - 忙しくて時短レシピが欲しい方 - 料理コンテンツを発信したいクリエイター ### 料金 - 無料プラン: レシピ作成、画像生成、動画風公開、SNS機能すべて利用可能 - プレミアムプラン: フルAI動画生成、追加クレジット付き