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

# Quickstart

> Make your first call to your Magic Meal Kits deployment.

## 1. Find your base URL

Your deployment runs at the Cloud Run URL created during [installation](/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:

```bash theme={null}
curl "https://magic-meal-kits-xxxxx.run.app/health"
```

An authenticated call uses your [API key](/authentication):

```bash theme={null}
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

<CardGroup cols={2}>
  <Card title="Browse the API" icon="book" href="/api-reference/overview">
    Find the endpoint for what you want to automate.
  </Card>

  <Card title="Let an LLM write it" icon="robot" href="/mcp/docs-as-mcp">
    Point Claude or Cursor at these docs over MCP and describe the automation.
  </Card>
</CardGroup>

<Info>
  **Skeleton page.** Worked end-to-end examples to be added with the API Reference.
</Info>
