Pouros, Nikolaus and Donnelly
- Size
- 11-50
- Founded
- 1994
Implemented human-resource core
orgs / #16
Implemented human-resource core
curl -sS \
"https://example-data.com/api/v1/orgs/16" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orgs/16"
);
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/16"
);
const org = (await res.json()) as Org;import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/16"
)
org = res.json() {
"id": 16,
"name": "Pouros, Nikolaus and Donnelly",
"slug": "pouros-nikolaus-and-donnelly",
"description": "Implemented human-resource core",
"industryId": 5,
"size": "11-50",
"foundedYear": 1994,
"websiteUrl": "https://www.pouros-nikolaus-and-donnelly.com",
"logoUrl": "https://picsum.photos/seed/org-16/200/200",
"createdAt": "2025-02-11T23:10:21.768Z",
"updatedAt": "2025-03-13T11:43:27.518Z"
}