Brekke - Muller
- Size
- 51-200
- Founded
- 2013
Virtual heuristic algorithm
orgs / #8
Virtual heuristic algorithm
curl -sS \
"https://example-data.com/api/v1/orgs/8" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orgs/8"
);
const org = await res.json();import type { Org } from "https://example-data.com/types/orgs.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/orgs/8"
);
const org = (await res.json()) as Org;import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/8"
)
org = res.json() {
"id": 8,
"name": "Brekke - Muller",
"slug": "brekke-muller",
"description": "Virtual heuristic algorithm",
"industryId": 15,
"size": "51-200",
"foundedYear": 2013,
"websiteUrl": null,
"logoUrl": "https://picsum.photos/seed/org-8/200/200",
"createdAt": "2026-01-13T18:15:40.375Z",
"updatedAt": "2026-03-16T20:21:17.154Z"
}