Schimmel, Jones and Lind
- Size
- 1000+
- Founded
- 2001
Upgradable logistical contingency
orgs / #7
Upgradable logistical contingency
curl -sS \
"https://example-data.com/api/v1/orgs/7" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orgs/7"
);
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/7"
);
const org = (await res.json()) as Org;import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/7"
)
org = res.json() {
"id": 7,
"name": "Schimmel, Jones and Lind",
"slug": "schimmel-jones-and-lind",
"description": "Upgradable logistical contingency",
"industryId": 39,
"size": "1000+",
"foundedYear": 2001,
"websiteUrl": null,
"logoUrl": "https://picsum.photos/seed/org-7/200/200",
"createdAt": "2025-09-28T16:25:10.642Z",
"updatedAt": "2026-04-02T11:15:29.890Z"
}