Skip to main content

1. Find your base URL

Your deployment runs at the Cloud Run URL created during installation:
https://magic-meal-kits-xxxxx.run.app
The HTTP API lives under /api/v1 (with some features under /api/v2 and /api/v3).

2. Make a request

A health check needs no auth:
curl "https://magic-meal-kits-xxxxx.run.app/health"
An authenticated call uses your API key:
curl -X POST "https://magic-meal-kits-xxxxx.run.app/api/v1/youtube/metadata" \
  -H "X-API-KEY: your-api-key" \
  -H "Content-Type: application/json" \
  -d '{"video_url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"}'

3. Build automations

Browse the API

Find the endpoint for what you want to automate.

Let an LLM write it

Point Claude or Cursor at these docs over MCP and describe the automation.
Skeleton page. Worked end-to-end examples to be added with the API Reference.