Stiedemann - Price
- Founded
- 2023
- Location
- PK
Customer-focused systematic support
Overview
brands / #22
Customer-focused systematic support
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands/22" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/brands/22" ); const brand = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/brands.d.ts https://example-data.com/types/brands.d.ts
import type { Brand } from "./types/brands";
const res = await fetch(
"https://example-data.com/api/v1/brands/22"
);
const brand = (await res.json()) as Brand; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands/22"
)
brand = res.json() Response
{
"id": 22,
"name": "Stiedemann - Price",
"slug": "stiedemann-price-22",
"description": "Customer-focused systematic support",
"logoUrl": "https://picsum.photos/seed/brand-22/200/200",
"website": "https://example.com/brands/stiedemann-price",
"foundedYear": 2023,
"headquartersCountryAlpha2": "PK",
"createdAt": "2026-05-08T05:23:35.598Z"
}