Predovic, Prosacco and O'Hara
- Size
- 1-10
- Founded
- 2000
Profound full-range access
orgs / #9
Profound full-range access
curl -sS \
"https://example-data.com/api/v1/orgs/9" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orgs/9"
);
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/9"
);
const org = (await res.json()) as Org;import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/9"
)
org = res.json() {
"id": 9,
"name": "Predovic, Prosacco and O'Hara",
"slug": "predovic-prosacco-and-o-hara",
"description": "Profound full-range access",
"industryId": 23,
"size": "1-10",
"foundedYear": 2000,
"websiteUrl": "https://www.predovic-prosacco-and-o-hara.com",
"logoUrl": "https://picsum.photos/seed/org-9/200/200",
"createdAt": "2024-03-13T05:05:14.394Z",
"updatedAt": "2026-04-06T05:09:09.393Z"
}