Finger Foods
Wings, sliders, spring rolls, and bite-sized snacks.
Overview
food-categories / #10
Wings, sliders, spring rolls, and bite-sized snacks.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/food-categories/10" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/food-categories/10" ); const foodCategory = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/food-categories.d.ts https://example-data.com/types/food-categories.d.ts
import type { FoodCategory } from "./types/food-categories";
const res = await fetch(
"https://example-data.com/api/v1/food-categories/10"
);
const foodCategory = (await res.json()) as FoodCategory; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/food-categories/10"
)
food_categorie = res.json() Response
{
"id": 10,
"name": "Finger Foods",
"slug": "finger-foods",
"description": "Wings, sliders, spring rolls, and bite-sized snacks.",
"parentId": 1,
"sortOrder": 4
}