Beer - Cummings
- Founded
- 1979
- Location
- FR
Innovative client-driven protocol
Overview
brands / #12
Innovative client-driven protocol
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands/12" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/brands/12" ); 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/12"
);
const brand = (await res.json()) as Brand; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands/12"
)
brand = res.json() Response
{
"id": 12,
"name": "Beer - Cummings",
"slug": "beer-cummings-12",
"description": "Innovative client-driven protocol",
"logoUrl": "https://picsum.photos/seed/brand-12/200/200",
"website": "https://example.com/brands/beer-cummings",
"foundedYear": 1979,
"headquartersCountryAlpha2": "FR",
"createdAt": "2025-06-24T04:39:20.633Z"
}