Brekke - Muller
- Size
- 51-200
- Founded
- 2013
Virtual heuristic algorithm
Overview
orgs / #8
Virtual heuristic algorithm
Request
curl example
curl -sS \ "https://example-data.com/api/v1/orgs/8" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/orgs/8" ); const org = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/orgs.d.ts https://example-data.com/types/orgs.d.ts
import type { Org } from "./types/orgs";
const res = await fetch(
"https://example-data.com/api/v1/orgs/8"
);
const org = (await res.json()) as Org; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/8"
)
org = res.json() Response
{
"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"
}