example-data.com

categories / #38

Tires & Wheels

All-season, performance, and off-road tires and alloy wheels.

Component variants

curl -sS \
  "https://example-data.com/api/v1/categories/38" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/categories/38"
);
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/38"
);
const categorie = (await res.json()) as Categorie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/categories/38"
)
categorie = res.json()
{
  "id": 38,
  "name": "Tires & Wheels",
  "slug": "tires-wheels",
  "description": "All-season, performance, and off-road tires and alloy wheels.",
  "parentId": 9,
  "sortOrder": 3
}
Draftbit