Finger Foods
Wings, sliders, spring rolls, and bite-sized snacks.
food-categories / #10
Wings, sliders, spring rolls, and bite-sized snacks.
curl -sS \
"https://example-data.com/api/v1/food-categories/10" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/food-categories/10"
);
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/10"
);
const foodCategorie = (await res.json()) as FoodCategorie;import requests
res = requests.get(
"https://example-data.com/api/v1/food-categories/10"
)
food_categorie = res.json() {
"id": 10,
"name": "Finger Foods",
"slug": "finger-foods",
"description": "Wings, sliders, spring rolls, and bite-sized snacks.",
"parentId": 1,
"sortOrder": 4
}