Dare, Carroll and Willms
- Founded
- 2014
- Location
- FR
Open-source AI-powered capability
brands / #15
Open-source AI-powered capability
curl -sS \
"https://example-data.com/api/v1/brands/15" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/brands/15"
);
const brand = await res.json();import type { Brand } from "https://example-data.com/types/brands.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/brands/15"
);
const brand = (await res.json()) as Brand;import requests
res = requests.get(
"https://example-data.com/api/v1/brands/15"
)
brand = res.json() {
"id": 15,
"name": "Dare, Carroll and Willms",
"slug": "dare-carroll-and-willms-15",
"description": "Open-source AI-powered capability",
"logoUrl": "https://picsum.photos/seed/brand-15/200/200",
"website": "https://www.dare-carroll-and-willms.com",
"foundedYear": 2014,
"headquartersCountryAlpha2": "FR",
"createdAt": "2018-05-31T11:21:52.642Z"
}