Dach - Russel
- Size
- 1-10
- Founded
- 1994
Fundamental sustainable concept
orgs / #22
Fundamental sustainable concept
curl -sS \
"https://example-data.com/api/v1/orgs/22" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orgs/22"
);
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/22"
);
const org = (await res.json()) as Org;import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/22"
)
org = res.json() {
"id": 22,
"name": "Dach - Russel",
"slug": "dach-russel",
"description": "Fundamental sustainable concept",
"industryId": 38,
"size": "1-10",
"foundedYear": 1994,
"websiteUrl": null,
"logoUrl": "https://picsum.photos/seed/org-22/200/200",
"createdAt": "2025-07-03T00:33:22.935Z",
"updatedAt": "2026-05-03T16:02:18.456Z"
}