example-data.com

Showcase / Recipe app

Collections used

Click into any collection to see its schema, sample records, and API reference.

Try it now

Fetch recipes in the language of your choice.

curl -sS \
  "https://example-data.com/api/v1/recipes?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/recipes?limit=25"
);
const { data, meta } = await res.json();
import type { Recipe, ListEnvelope } from "https://example-data.com/types/recipes.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/recipes?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Recipe>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/recipes",
    params={"limit": 25},
)
data = res.json()
Draftbit