← Back to Docs
API Reference

Recipe Data Export

Export your saved recipes as structured JSON for backup, migration, or integration with external tools.

Endpoint

GET /api/v1/recipes/export

Headers

HeaderValueRequired
AuthorizationBearer <api_key>Yes
Acceptapplication/jsonNo

Query Parameters

ParameterTypeDescription
formatstringOutput format: json (default) or csv
from_dateISO 8601Filter recipes saved after this date
tagsstring[]Comma-separated tag filter

Response

{
  "export_id": "exp_9a7b3c",
  "generated_at": "2026-01-15T08:22:10Z",
  "recipe_count": 47,
  "recipes": [
    {
      "id": "rec_4f2a",
      "title": "Spicy Miso Ramen",
      "url": "https://...",
      "tags": ["ramen", "spicy"],
      "saved_at": "2025-12-01T14:30:00Z"
    }
  ]
}

Rate limit: 10 requests per minute per API key. Exports exceeding 10,000 recipes are delivered asynchronously via webhook.