Torphy LLC
- Founded
- 1936
- Location
- NO
Public-key maximized generative AI
Overview
brands / #40
Public-key maximized generative AI
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands/40" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/brands/40" ); 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/40"
);
const brand = (await res.json()) as Brand; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands/40"
)
brand = res.json() Response
{
"id": 40,
"name": "Torphy LLC",
"slug": "torphy-llc-40",
"description": "Public-key maximized generative AI",
"logoUrl": "https://picsum.photos/seed/brand-40/200/200",
"website": null,
"foundedYear": 1936,
"headquartersCountryAlpha2": "NO",
"createdAt": "2020-02-24T02:44:07.337Z"
}