Furniture
Sofas, beds, tables, chairs, and shelving for every room.
categories / #18
Sofas, beds, tables, chairs, and shelving for every room.
curl -sS \
"https://example-data.com/api/v1/categories/18" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/categories/18"
);
const categorie = await res.json();import type { Categorie } from "https://example-data.com/types/categories.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/categories/18"
);
const categorie = (await res.json()) as Categorie;import requests
res = requests.get(
"https://example-data.com/api/v1/categories/18"
)
categorie = res.json() {
"id": 18,
"name": "Furniture",
"slug": "furniture",
"description": "Sofas, beds, tables, chairs, and shelving for every room.",
"parentId": 3,
"sortOrder": 1
}