example-data.com

food-categories / #22

Fries & Potatoes

French fries, mashed potatoes, potato wedges, and hash browns.

Component variants

curl -sS \
  "https://example-data.com/api/v1/food-categories/22" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/food-categories/22"
);
const foodCategorie = await res.json();
import type { FoodCategorie } from "https://example-data.com/types/food-categories.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/food-categories/22"
);
const foodCategorie = (await res.json()) as FoodCategorie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/food-categories/22"
)
food_categorie = res.json()
{
  "id": 22,
  "name": "Fries & Potatoes",
  "slug": "fries-potatoes",
  "description": "French fries, mashed potatoes, potato wedges, and hash browns.",
  "parentId": 5,
  "sortOrder": 1
}
Draftbit