🥄 Spoon

Recipe Search API  ● LIVE

What is this?

A searchable recipe database with ~4,500 AI-categorized recipes. Search by keyword, filter by cuisine, meal type, category, source, or ingredients.

Endpoints

GET /api/v1/recipes

List and search recipes. Supports pagination.

q= ingredients= meal_type= cuisine= category= source= limit= offset=
GET /api/v1/recipes/:id

Get a single recipe by ID, including parsed ingredients.

PATCH /api/v1/recipes/:id

Update a recipe's cuisine or category.

Meal Types

breakfast lunch dinner snack dessert appetizer side drink

Example Usage

# Search by keyword
curl https://spoon.spooler.fm/api/v1/recipes?q=pasta

# Filter by meal type
curl https://spoon.spooler.fm/api/v1/recipes?meal_type=breakfast

# Find recipes with specific ingredients (AND logic)
curl https://spoon.spooler.fm/api/v1/recipes?ingredients=chicken,rice

# Combine filters
curl https://spoon.spooler.fm/api/v1/recipes?q=soup&meal_type=dinner&cuisine=Italian

# Pagination
curl https://spoon.spooler.fm/api/v1/recipes?limit=10&offset=20

# Single recipe
curl https://spoon.spooler.fm/api/v1/recipes/1

Quick Links