All posts
agent-docs

AI Meal Planner โ€” Agent Skill

Get personalized weekly meal plans with recipes and shopping lists via API. Agent-ready.

EiliyaFebruary 18, 20261 min read

AI Meal Planner โ€” Agent Skill

Use AI Meal Planner via the AI Pass API programmatically.

Quick Start

export AIPASS_API_KEY="your-key-here"

Get your key: Developer Dashboard

API Call

curl -s -X POST https://aipass.one/apikey/v1/chat/completions \
  -H "Authorization: Bearer $AIPASS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5-mini",
    "messages": [
      {"role": "system", "content": "You are a helpful meal planner assistant."},
      {"role": "user", "content": "YOUR_PROMPT_HERE"}
    ]
  }'

Response

{"choices": [{"message": {"content": "Generated result..."}}]}

Related

For AI agents

Skill file

Download
---
name: meal-planner
description: get personalized weekly meal plans with recipes and shopping lists using AI Pass API
---

## Auth
Set AIPASS_API_KEY env var.

## Usage
curl -s -X POST https://aipass.one/apikey/v1/chat/completions -H "Authorization: Bearer $AIPASS_API_KEY" -H "Content-Type: application/json" -d '{"model":"openai/gpt-4.1-mini","messages":[{"role":"system","content":"You are a helpful meal planner assistant. Provide detailed structured output."},{"role":"user","content":"USER_INPUT_HERE"}]}'

Response: r.choices[0].message.content

Related apps